{"id":584,"date":"2019-06-08T17:40:28","date_gmt":"2019-06-08T17:40:28","guid":{"rendered":"https:\/\/www.24x7serversupport.com\/24x7serversupport-blog\/?p=584"},"modified":"2021-04-03T11:48:37","modified_gmt":"2021-04-03T06:18:37","slug":"how-to-configure-django-with-apache-in-centos-7","status":"publish","type":"post","link":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/","title":{"rendered":"How To Configure Django With Apache In CentOS 7"},"content":{"rendered":"\n<p>Django is a Python-based free and open-source web framework that can be used for developing dynamic websites and web applications. In this article, we will explain the procedures to configure Django with Apache in CentOS 7.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"HowToConfigureDjangoWithApacheInCentOS7-Requirements\">Requirements<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Server running with CentOS 7<\/li><li>Static IP address configured on your system. (We are using IP 10.10.1.4 as an example)<\/li><li>User with sudo privilege.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"HowToConfigureDjangoWithApacheInCentOS7-InstallApacheWebServer\">Install Apache Web Server<\/h3>\n\n\n\n<p>Before starting the configuration, update the server with the latest version using the following command. It will install all the latest patches and security updates to your system.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>yum update -y<\/code><\/pre>\n\n\n\n<p>Install the EPEL repository on your server using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>yum <\/code><code>install<\/code> <code>epel-release -y<\/code><\/pre>\n\n\n\n<p>After enabling the EPEL repository, you can install Apache and other required packages using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>yum <\/code><code>install<\/code> <code>python2-pip httpd mod_wsgi -y<\/code><\/pre>\n\n\n\n<p>Proceed to the next step once the installation is completed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"HowToConfigureDjangoWithApacheInCentOS7-InstallDjango\">Install Django<\/h3>\n\n\n\n<p>Before installing Django, it is required to create the Python virtual environment. So you will need to install \u201cvirtualenv\u201d.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>pip <\/code><code>install<\/code> <code>virtualenv<\/code><\/pre>\n\n\n\n<p>After installing the \u201cvirtualenv\u201d&nbsp;create a project directory for Django.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>mkdir<\/code> <code>\/opt\/djangoproject<\/code><\/pre>\n\n\n\n<p>Create a Python virtual environment using the following commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd<\/code> <code>\/opt\/djangoproject<\/code> <code>sudo<\/code> <code>virtualenv djangoprojectenv<\/code><\/pre>\n\n\n\n<p>Enable the virtual environment to install packages.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>source<\/code> <code>djangoprojectenv<\/code><code>\/bin\/activate<\/code><\/pre>\n\n\n\n<p>Install Django in the djangoprojectenv shell using pip command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>djangoprojectenv) [root@server djangoproject]<\/code><code># pip install django<\/code><\/pre>\n\n\n\n<p>Once the installation is completed, you can verify the Django version using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># django-admin --version<\/code><\/pre>\n\n\n\n<p>You should see something similar to:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><code>1.11.18<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"HowToConfigureDjangoWithApacheInCentOS7-CreatetheDjangoProject\">Create the Django Project<\/h3>\n\n\n\n<p>Once Django is installed in the directory, create first Django project using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>djangoprojectenv) [root@server djangoproject]<\/code><code># django-admin.py startproject myfirstproject.<\/code><\/pre>\n\n\n\n<p>Next, Modify the file \u201c<code>settings.py\"<\/code><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># vi myfirstproject\/settings.py<\/code><\/pre>\n\n\n\n<p>Add the following line at the end of the file and save.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>STATIC_ROOT = os.path.<\/code><code>join<\/code><code>(BASE_DIR, <\/code><code>\"static\/\"<\/code><code>)<\/code><\/pre>\n\n\n\n<p>Transfer the database of the project to the SQLite database using the command given below.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># .\/manage.py migrate<\/code><\/pre>\n\n\n\n<p>Output :<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>Operations to perform:<\/code> \n<code>Apply all migrations: admin, auth, contenttypes, sessions<\/code> <code>\nRunning migrations:<\/code> \n<code>Applying contenttypes.0001_initial... OK<\/code> \n<code>Applying auth.0001_initial... OK<\/code> \n<code>Applying admin.0001_initial... OK<\/code> \n<code>Applying admin.0002_logentry_remove_auto_add... OK<\/code> \n<code>Applying contenttypes.0002_remove_content_type_name... OK<\/code> \n<code>Applying auth.0002_alter_permission_name_max_length... OK<\/code> \n<code>Applying auth.0003_alter_user_email_max_length... OK<\/code> \n<code>Applying auth.0004_alter_user_username_opts... OK<\/code> \n<code>Applying auth.0005_alter_user_last_login_null... OK<\/code> \n<code>Applying auth.0006_require_contenttypes_0002... OK<\/code> \n<code>Applying auth.0007_alter_validators_add_error_messages... OK<\/code> \n<code>Applying auth.0008_alter_user_username_max_length... OK<\/code> \n<code>Applying sessions.0001_initial... OK<\/code><\/pre>\n\n\n\n<p>Create a superuser for Django. While creating superuser you will be asked to select a username, e-mail address and password.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># .\/manage.py createsuperuser<\/code> <code>\nUsername (leave blank to use <\/code><code>'root'<\/code><code>): djangoadmin<\/code> \n<code>Email address:&nbsp; <\/code> \n<code>Password: <\/code> \n<code>Password (again): <\/code> <code>\nSuperuser created successfully.<\/code><\/pre>\n\n\n\n<p>Collect all of the static content into the directory location we configured earlier using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># .\/manage.py collectstatic<\/code><\/pre>\n\n\n\n<p>Add&nbsp;server\u2019s IP address to \u201c<code>request.py\"<\/code>&nbsp;file&nbsp;to access Django from the remote machine.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># vi djangoprojectenv\/lib64\/python2.7\/site-packages\/django\/http\/request.py<\/code><\/pre>\n\n\n\n<p>&nbsp;Add server IP address as shown below and save the file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>allowed_hosts = ['localhost', '10.10.1.4', '[::1]']<\/code><\/pre>\n\n\n\n<p>Test Django project by running the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code>#.\/manage.py runserver 0.0.0.0:8989<\/code><\/pre>\n\n\n\n<p>Open your web browser and type the URL \u201c<code>http:\/\/<\/code>10.10.1.4<code>:8989\"<\/code>, you should see your first Django page.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?w=640\" alt=\"\" data-recalc-dims=\"1\"\/><\/figure>\n\n\n\n<p>You can also access the Django admin page by typing the URL \u201c<code>http:\/\/10.10.1.4:8989\/admin\"<\/code>&nbsp;on your web browser. Enter username \u201c<code>djangoadmin\"<\/code>&nbsp;and the password which you have created earlier.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/kb.int.supportsages.com\/download\/attachments\/20840956\/django2.png?w=640\" alt=\"\" data-recalc-dims=\"1\"\/><\/figure>\n\n\n\n<p>To exit from your virtual environment, use the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>(djangoprojectenv) [root@server djangoproject]<\/code><code># deactivate<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"HowToConfigureDjangoWithApacheInCentOS7-ConfigureDjangoforApache\">Configure Django for Apache<\/h3>\n\n\n\n<p>After creating a Django project, it is time to configure Apache web server for Django. Create a new configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>vi<\/code> <code>\/etc\/httpd\/conf<\/code><code>.d<\/code><code>\/django<\/code><code>.conf<\/code><\/pre>\n\n\n\n<p>Add the following code and save the file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>Alias <\/code><code>\/static<\/code> <code>\/opt\/djangoproject\/static<\/code> \n<code>&lt;Directory <\/code><code>\/opt\/djangoproject\/static<\/code><code>&gt;<\/code> <code>Require all granted<\/code> \n<code>&lt;<\/code><code>\/Directory<\/code><code>&gt;<\/code> \n<code>&lt;Directory <\/code><code>\/opt\/djangoproject\/myfirstproject<\/code><code>&gt;<\/code> <code>&lt;Files wsgi.py&gt;<\/code> <code>Require all granted<\/code> <code>&lt;<\/code><code>\/Files<\/code><code>&gt;<\/code> \n<code>&lt;<\/code><code>\/Directory<\/code><code>&gt;<\/code> \n<code>WSGIDaemonProcess myfirstproject python-path=<\/code><code>\/opt\/djangoproject<\/code><code>:<\/code><code>\/opt\/djangoproject\/djangoprojectenv\/lib\/python2<\/code><code>.7<\/code><code>\/site-packages<\/code> \n<code>WSGIProcessGroup myfirstproject<\/code> \n<code>WSGIScriptAlias \/ <\/code><code>\/opt\/djangoproject\/myfirstproject\/wsgi<\/code><code>.py<\/code><\/pre>\n\n\n\n<p>Restart Apache service and enable it to start at boot.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>systemctl restart httpd<\/code> <code>sudo<\/code> <code>systemctl <\/code><code>enable<\/code> <code>httpd<\/code><\/pre>\n\n\n\n<p>Set proper ownership so \u201c<code>httpd\"<\/code>&nbsp;has permission to use the Django project directory.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo<\/code> <code>chown<\/code> <code>-R apache:apache <\/code><code>\/opt\/djangoproject<\/code><\/pre>\n\n\n\n<p>You can access your Django site using the URL \u201c<code>http:\/\/<\/code>10.10.1.4<code>\/admin\"<\/code>&nbsp;on your web browser without specifying any port.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Django is a Python-based free and open-source web framework that can be used for developing dynamic websites and web applications. In this article, we will explain the procedures to configure Django with Apache in CentOS 7. Requirements Server running with CentOS 7 Static IP address configured on your system. (We are using IP 10.10.1.4 as [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[139,30],"tags":[119,114,140,112],"class_list":["post-584","post","type-post","status-publish","format-standard","hentry","category-apache","category-centos","tag-apache","tag-centos-7","tag-django","tag-linux"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>how to configure django with apache in centos 7<\/title>\n<meta name=\"description\" content=\"How To Configure Django With Apache In CentOS 7, How to install DJango in Centos 7, How to bind Django with Apache in Centos 7\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"how to configure django with apache in centos 7\" \/>\n<meta property=\"og:description\" content=\"How To Configure Django With Apache In CentOS 7, How to install DJango in Centos 7, How to bind Django with Apache in Centos 7\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7serversupport Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-08T17:40:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-03T06:18:37+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000\" \/>\n<meta name=\"author\" content=\"24x7support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:site\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"24x7support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/\",\"name\":\"how to configure django with apache in centos 7\",\"isPartOf\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000\",\"datePublished\":\"2019-06-08T17:40:28+00:00\",\"dateModified\":\"2021-04-03T06:18:37+00:00\",\"author\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\"},\"description\":\"How To Configure Django With Apache In CentOS 7, How to install DJango in Centos 7, How to bind Django with Apache in Centos 7\",\"breadcrumb\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#primaryimage\",\"url\":\"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000\",\"contentUrl\":\"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.24x7serversupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Configure Django With Apache In CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/\",\"name\":\"24x7serversupport Blog\",\"description\":\"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\",\"name\":\"24x7support\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"how to configure django with apache in centos 7","description":"How To Configure Django With Apache In CentOS 7, How to install DJango in Centos 7, How to bind Django with Apache in Centos 7","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"how to configure django with apache in centos 7","og_description":"How To Configure Django With Apache In CentOS 7, How to install DJango in Centos 7, How to bind Django with Apache in Centos 7","og_url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/","og_site_name":"24x7serversupport Blog","article_published_time":"2019-06-08T17:40:28+00:00","article_modified_time":"2021-04-03T06:18:37+00:00","og_image":[{"url":"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000"}],"author":"24x7support","twitter_card":"summary_large_image","twitter_creator":"@24x7serversuppo","twitter_site":"@24x7serversuppo","twitter_misc":{"Written by":"24x7support","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/","url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/","name":"how to configure django with apache in centos 7","isPartOf":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#primaryimage"},"thumbnailUrl":"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000","datePublished":"2019-06-08T17:40:28+00:00","dateModified":"2021-04-03T06:18:37+00:00","author":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401"},"description":"How To Configure Django With Apache In CentOS 7, How to install DJango in Centos 7, How to bind Django with Apache in Centos 7","breadcrumb":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#primaryimage","url":"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000","contentUrl":"http:\/\/kb.int.supportsages.com\/download\/attachments\/20840956\/django1.png?version=2&amp;modificationDate=1546732245000"},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-configure-django-with-apache-in-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7serversupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Configure Django With Apache In CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7serversupport.com\/blog\/#website","url":"https:\/\/www.24x7serversupport.com\/blog\/","name":"24x7serversupport Blog","description":"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401","name":"24x7support","url":"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/584","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=584"}],"version-history":[{"count":1,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/584\/revisions"}],"predecessor-version":[{"id":3341,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/584\/revisions\/3341"}],"wp:attachment":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=584"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=584"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=584"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}