{"id":2384,"date":"2018-05-11T19:02:16","date_gmt":"2018-05-11T13:32:16","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2384"},"modified":"2019-04-05T14:30:20","modified_gmt":"2019-04-05T09:00:20","slug":"configure-uwsgi-with-nginx-for-django-applications","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/","title":{"rendered":"Configure uwsgi with nginx for Django applications"},"content":{"rendered":"<h3><strong>Configure uwsgi with nginx for Django applications<\/strong><\/h3>\n<p><strong>Date Posted: 11-05-2018<\/strong><\/p>\n<p>In this article, we&#8217;ll be explaining how to run uwsgi server with nginx for Django applications.<\/p>\n<h3>Prerequisties:-<\/h3>\n<p>1. python2.7<br \/>\n2. nginx<br \/>\n3. pip<br \/>\n4. uwsgi<\/p>\n<p>Note: We are configuring this setup on RHEL 7.4. The same can be used for CentOS versions too. However for ubuntu system, you might need to use apt.<\/p>\n<p><strong>Installation:-<\/strong><\/p>\n<p>Run yum update<\/p>\n<p class=\"p1\"><code><span class=\"s1\">yum -y update<\/span><\/code><\/p>\n<p>Install dependencies packages<\/p>\n<p class=\"p1\"><code><span class=\"s1\">yum install gcc openssl-devel bzip2-develpython-devel python-setuptools python-pip<\/span><\/code><\/p>\n<p><strong>1. Setup Python2.7<\/strong><\/p>\n<p>First install Python application,<\/p>\n<p><code>cd \/usr\/src<\/code><br \/>\n<code> wget https:\/\/www.python.org\/ftp\/python\/2.7.13\/Python-2.7.13.tar.xz<\/code><br \/>\n<code> tar -xvf\u00a0Python-2.7.13.tar.xz<\/code><br \/>\n<code> cd\u00a0Python-2.7.13\/<\/code><br \/>\n<code> .\/<span class=\"s1\">configure<\/span><\/code><br \/>\n<code> make install\u00a0<\/code><\/p>\n<p>Now verify python version<\/p>\n<p class=\"p1\"><code><span class=\"s1\"># python2.7 -V<\/span><\/code><br \/>\n<code><span class=\"s1\">Python<\/span><span class=\"s1\"> 2.7.13<\/span><\/code><\/p>\n<p><strong>2. Install nginx<\/strong><\/p>\n<p><code>\u00a0yum install nginx<\/code><\/p>\n<p>Make it start after server reboot<br \/>\n<code>systemctl enable nginx<br \/>\n<\/code><br \/>\nStart service<\/p>\n<p><code>systemctl start nginx<\/code><\/p>\n<p>Note: If you are using firewall, you need to allow port 80,443 to access sites. You will see nginx welcome page when you load http:\/\/your_server_ip_address\/<\/p>\n<p><strong>3. Install Django &amp; uWSGI<\/strong><\/p>\n<p><code>pip install django<\/code><br \/>\n<code>pip install uwsgi<\/code><\/p>\n<p><strong>4. Configure website\u00a0<\/strong><\/p>\n<p>Create a new domain called web.pheonixsolutions.com. In our example, we used web.pheonixsolutions.com.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"># cat \/etc\/nginx\/conf.d\/web.pheonixsolutions.com.conf\r\nupstream web_pheonix {\r\n     server unix:\/\/\/var\/www\/pheonix\/web_pheonix.sock; # for a file socket\r\n}\r\nserver {\r\n    # the port your site will be served on\r\n    listen      80;\r\n    # the domain name it will serve for\r\n    server_name web.pheonixsolutions.com; # substitute your machine's IP address or FQDN\r\n    charset     utf-8;\r\n\r\n    # max upload size\r\n    client_max_body_size 75M;   # adjust to taste\r\n    location \/media  {\r\n        alias \/var\/www\/pheonix\/media;  # your Django project's media files - amend as required\r\n    }\r\n\r\n    location \/static {\r\n        alias \/var\/www\/pheonix\/static; # your Django project's static files - amend as required\r\n    }\r\n\r\n    # Finally, send all non-media requests to the Django server.\r\n    location \/ {\r\n        uwsgi_pass  web_pheonix;\r\n        include     \/etc\/nginx\/uwsgi_params; # the uwsgi_params file you installed\r\n    }\r\n}\r\n<\/pre>\n<p>Add the contents to uwsgi_params file<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">uwsgi_param  QUERY_STRING       $query_string;\r\nuwsgi_param  REQUEST_METHOD     $request_method;\r\nuwsgi_param  CONTENT_TYPE       $content_type;\r\nuwsgi_param  CONTENT_LENGTH     $content_length;\r\n\r\nuwsgi_param  REQUEST_URI        $request_uri;\r\nuwsgi_param  PATH_INFO          $document_uri;\r\nuwsgi_param  DOCUMENT_ROOT      $document_root;\r\nuwsgi_param  SERVER_PROTOCOL    $server_protocol;\r\nuwsgi_param  REQUEST_SCHEME     $scheme;\r\nuwsgi_param  HTTPS              $https if_not_empty;\r\n\r\nuwsgi_param  REMOTE_ADDR        $remote_addr;\r\nuwsgi_param  REMOTE_PORT        $remote_port;\r\nuwsgi_param  SERVER_PORT        $server_port;\r\nuwsgi_param  SERVER_NAME        $server_name;<\/pre>\n<p>Reference link &#8211;\u00a0http:\/\/uwsgi-docs.readthedocs.io\/en\/latest\/tutorials\/Django_and_nginx.html<\/p>\n<p>Create uwsgi config file<\/p>\n<p><code>vi web_pheonix.ini<\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"># site_uwsgi.ini file\r\n[uwsgi]\r\n\r\n# Django-related settings\r\n# the base directory (full path)\r\nchdir           = \/var\/www\/pheonix\/\r\n# Django's wsgi file\r\nmodule          = pheonix.wsgi\r\n\r\n# process-related settings\r\n# master\r\nmaster          = true\r\n# maximum number of worker processes\r\nprocesses       = 10\r\n# the socket (use the full path to be safe\r\nsocket          = \/var\/www\/pheonix\/web_pheonix.sock\r\n# ... with appropriate permissions - may be needed\r\nchmod-socket    = 666\r\n# clear environment on exit\r\nvacuum          = true\r\n#max-requests = 5000\r\n#limit-as = 128\r\n#daemonize =  \/var\/log\/uwsgi-emperor.log<\/pre>\n<p>Run uWSGI service to test its working<\/p>\n<div class=\"highlight-bash\">\n<div class=\"highlight\">\n<p><code>uwsgi --ini web_pheonix.ini<\/code><\/p>\n<p>Now run\u00a0uWSGI in \u2018emperor\u2019 mode.\u00a0In this mode it keeps an eye on a directory of uWSGI config files, and will spawn instances (\u2018vassals\u2019) for each one it finds.<\/p>\n<p>Whenever a config file is amended, the emperor will automatically restart the vassal.<\/p>\n<p><code>sudo mkdir -p \/etc\/uwsgi\/vassals<\/code><\/p>\n<p><code>sudo mkdir -p \/etc\/uwsgi\/vassals<\/code><\/p>\n<p><code>uwsgi --emperor \/etc\/uwsgi\/vassals<\/code><\/p>\n<p>The website http:\/\/web.pheonixsolutions.com should work now.<\/p>\n<\/div>\n<p>Make uWSGI starts at server reboot<\/p>\n<p><code> vi \/opt\/scripts\/uwsgi_restart.sh<\/code><\/p>\n<div class=\"highlight-bash\">\n<div class=\"highlight\">\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\r\n#!\/bin\/bash\r\n\/usr\/local\/bin\/uwsgi --emperor \/etc\/uwsgi\/vassals \/var\/log\/uwsgi-emperor.log\r\n<\/pre>\n<p>Change the ownership of the file.<\/p>\n<p><code>chmod +x \/opt\/scripts\/uwsgi_restart.sh<\/code><\/p>\n<p>Add the restart script at startup<\/p>\n<p><code>vi \/etc\/rc.local<\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\/opt\/scripts\/uwsgi_restart.sh<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Configure uwsgi with nginx for Django applications Date Posted: 11-05-2018 In this article, we&#8217;ll be explaining how to run uwsgi server with nginx for Django applications. Prerequisties:- 1. python2.7 2. nginx 3. pip 4. uwsgi Note: We are configuring this setup on RHEL 7.4. The same can be used for&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Configure uwsgi with nginx for Django applications<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[225,259,309],"tags":[261,407],"class_list":{"0":"post-2384","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-linux","7":"category-python","8":"category-redhat","9":"tag-linux","10":"tag-uwsgi","11":"h-entry","13":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Configure uwsgi with nginx for Django applications Date Posted: 11-05-2018 In this article, we&#8217;ll be explaining how to run uwsgi server with nginx for Django applications. Prerequisties:- 1. python2.7 2. nginx 3. pip 4. uwsgi Note: We are configuring this setup on RHEL 7.4. The same can be used for&hellip; Continue Reading Configure uwsgi with nginx for Django applications\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-11T13:32:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-04-05T09:00:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Configure uwsgi with nginx for Django applications\",\"datePublished\":\"2018-05-11T13:32:16+00:00\",\"dateModified\":\"2019-04-05T09:00:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/\"},\"wordCount\":248,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Linux\",\"uwsgi\"],\"articleSection\":[\"Linux\",\"Python\",\"Redhat\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-05-11T13:32:16+00:00\",\"dateModified\":\"2019-04-05T09:00:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/configure-uwsgi-with-nginx-for-django-applications\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configure uwsgi with nginx for Django applications\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Configure uwsgi with nginx for Django applications Date Posted: 11-05-2018 In this article, we&#8217;ll be explaining how to run uwsgi server with nginx for Django applications. Prerequisties:- 1. python2.7 2. nginx 3. pip 4. uwsgi Note: We are configuring this setup on RHEL 7.4. The same can be used for&hellip; Continue Reading Configure uwsgi with nginx for Django applications","og_url":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-05-11T13:32:16+00:00","article_modified_time":"2019-04-05T09:00:20+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Configure uwsgi with nginx for Django applications","datePublished":"2018-05-11T13:32:16+00:00","dateModified":"2019-04-05T09:00:20+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/"},"wordCount":248,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Linux","uwsgi"],"articleSection":["Linux","Python","Redhat"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/","url":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-05-11T13:32:16+00:00","dateModified":"2019-04-05T09:00:20+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/configure-uwsgi-with-nginx-for-django-applications\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Configure uwsgi with nginx for Django applications"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-Cs","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2384","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2384"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2384\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2384"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2384"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2384"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}