{"id":18506,"date":"2016-02-06T10:52:29","date_gmt":"2016-02-06T16:52:29","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18506"},"modified":"2022-12-09T07:12:06","modified_gmt":"2022-12-09T13:12:06","slug":"how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/","title":{"rendered":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-full wp-image-18507\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png\" alt=\"symfony vps\" width=\"240\" height=\"60\" \/>Symfony 3 is an open source and high performance PHP framework used for developing web 2.0 applications. Symfony allows you to develop faster and better software than with flat PHP.<br \/>\nIn this step by step tutorial, we will show you how to easily <strong>install Symfony 3 framework with Nginx<\/strong> on your Ubuntu based virtual server.<\/p>\n<p>&nbsp;<\/p>\n<p><!--more--><\/p>\n<p>At the time of writing this tutorial, the latest stable version is Symfony 3.0.1 and it requires:<\/p>\n<ul>\n<li>Web server (Apache, Nginx etc.) installed on your Linux virtual server.<\/li>\n<li>PHP 5.4 or higher (the php5-fpm package is required for Nginx servers)<\/li>\n<\/ul>\n<p>If you have Apache installed on your server, stop the Apache service and remove Apache packages:<\/p>\n<pre>\/etc\/init.d\/apache2 stop\r\napt-get remove apache2*<\/pre>\n<p>Make sure your <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubutu VPS<\/a> is fully up to date by using the following commands:<\/p>\n<pre>apt-get update\r\napt-get upgrade<\/pre>\n<p>In order to install Nginx, PHP-FPM, curl and MySQL on your server, run the following command:<\/p>\n<pre>apt-get install nginx php5-fpm php5-cli php5-mcrypt php5-gd curl mysql-client-5.5 mysql-server-5.5 mysql-server-core-5.5<\/pre>\n<p>Locate the PHP configuration file using the following command:<\/p>\n<pre>php5-fpm -i | grep php.ini\r\nConfiguration File (php.ini) Path =&gt; \/etc\/php5\/fpm\r\nLoaded Configuration File =&gt; \/etc\/php5\/fpm\/php.ini<\/pre>\n<p>Edit the \/etc\/php5\/fpm\/php.ini configuration file using the following command:<\/p>\n<pre>vi \/etc\/php5\/fpm\/php.ini<\/pre>\n<p>then, add\/modify the following lines:<\/p>\n<pre>memory_limit = 128M\r\ncgi.fix_pathinfo = 0\r\nsafe_mode = Off\r\nmax_execution_time = 120\r\nmax_input_time = 120\r\ndate.timezone = \"America\/Chicago\"\r\n<\/pre>\n<p>Run the following command to restart the php5-fpm service for the changes to take effect:<\/p>\n<pre>\/etc\/init.d\/php5-fpm restart<\/pre>\n<p>Install the latest stable version of Symfony on your virtual server using the following commands:<\/p>\n<pre>sudo curl -LsS https:\/\/symfony.com\/installer -o \/usr\/local\/bin\/symfony\r\nsudo chmod a+x \/usr\/local\/bin\/symfony<\/pre>\n<p>Create a new Symfony project:<\/p>\n<pre>symfony new project_name<\/pre>\n<pre>mv \/project_name \/var\/www\/your-domain.com<\/pre>\n<p>Set the proper ownership of files and directories inside the &#8216;\/var\/www\/your-domain.com&#8217; directory:<\/p>\n<pre>chown chown www-data:www-data -R \/var\/www\/your-domain.com\/<\/pre>\n<p>For performance reasons, our recommendation is to run php5-fpm in socket mode, instead of accessing via &lt;IP_address&gt;:PORT.<br \/>\nRemove the default Nginx server block, then create a new Nginx configuration file and add the following virtual block for your domain name:<\/p>\n<pre>rm \/etc\/nginx\/sites-enabled\/default\r\nvi \/etc\/nginx\/sites-available\/your-domain.com<\/pre>\n<p>and add the following lines:<\/p>\n<pre>server {\r\n        listen 80;\r\n        server_name your-domain.com;\r\n        client_max_body_size 20M;\r\n        root \/var\/www\/your-domain.com\/web;\r\n        index index.php index.html;\r\n        access_log \/var\/log\/nginx\/your-domain.com-access.log;\r\n        error_log \/var\/log\/nginx\/your-domain.com-error.log;\r\n        set $yii_bootstrap \"index.php\";\r\n        charset utf-8;\r\n\r\nlocation \/ {\r\n        try_files $uri @rewriteapp;\r\n        }\r\n\r\nlocation @rewriteapp {\r\n        rewrite ^(.*)$ \/app.php\/$1 last;\r\n    }\r\n\r\nlocation ~ ^\/(app|app_dev|config)\\.php(\/|$) {\r\n\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.*)$;\r\n        include fastcgi_params;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n        fastcgi_param  HTTPS off;\r\n    }\r\n\r\nlocation ~ \\.php {\r\n        fastcgi_index index.php;\r\n        fastcgi_split_path_info ^(.+\\.php)(.*)$;\r\n        if (-f $document_root$fastcgi_script_name){\r\n            set $fsn $fastcgi_script_name;\r\n        }\r\n        include \/etc\/nginx\/fastcgi_params;\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n        }\r\n\r\nlocation ~ \/\\. {\r\n        deny all;\r\n        access_log off;\r\n        log_not_found off;\r\n        }\r\n}\r\n<\/pre>\n<p>In order to enable the newly created Nginx block, create a new symbolic link using the following command:<\/p>\n<pre>ln -s \/etc\/nginx\/sites-available\/your-domain.com \/etc\/nginx\/sites-enabled\/your-domain.com<\/pre>\n<p>Test the Nginx configuration:<\/p>\n<pre># nginx -t\r\nnginx: the configuration file \/etc\/nginx\/nginx.conf syntax is ok\r\nnginx: configuration file \/etc\/nginx\/nginx.conf test is successful<\/pre>\n<p>and restart the Nginx web server for the changes to take effect:<\/p>\n<pre>\/etc\/init.d\/nginx restart<\/pre>\n<p>Open http:\/\/your-domain\/app.php and you should access the welcome page of Symfony 3. Learn how to create your <a href=\"http:\/\/symfony.com\/doc\/current\/index.html\">first page in Symfony<\/a>. That is it. The framework has been installed now.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.rosehosting.com\/php-hosting.html\">PHP Web Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install Symfony 3 PHP framework<\/strong> for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Symfony 3 is an open source and high performance PHP framework used for developing web 2.0 applications. Symfony allows you &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#more-18506\" aria-label=\"Read more about How to install Symfony 3 Framework with Nginx on Ubuntu 14.04\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18507,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698,1712,1707],"tags":[1080,1079,1078],"class_list":["post-18506","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","category-web-frameworks","category-web-servers","tag-install-symfony-3-framework","tag-install-symfony-3-with-nginx","tag-install-symfony-3-with-nginx-on-ubuntu","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04\" \/>\n<meta property=\"og:description\" content=\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2016-02-06T16:52:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-09T13:12:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"240\" \/>\n\t<meta property=\"og:image:height\" content=\"60\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04\",\"datePublished\":\"2016-02-06T16:52:29+00:00\",\"dateModified\":\"2022-12-09T13:12:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/\"},\"wordCount\":424,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/symfony_vps.png\",\"keywords\":[\"install Symfony 3 framework\",\"install Symfony 3 with Nginx\",\"install Symfony 3 with Nginx on Ubuntu\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/\",\"name\":\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/symfony_vps.png\",\"datePublished\":\"2016-02-06T16:52:29+00:00\",\"dateModified\":\"2022-12-09T13:12:06+00:00\",\"description\":\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/symfony_vps.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/symfony_vps.png\",\"width\":240,\"height\":60,\"caption\":\"symfony vps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting","description":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting","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.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/","og_locale":"en_US","og_type":"article","og_title":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04","og_description":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-02-06T16:52:29+00:00","article_modified_time":"2022-12-09T13:12:06+00:00","og_image":[{"width":240,"height":60,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04","datePublished":"2016-02-06T16:52:29+00:00","dateModified":"2022-12-09T13:12:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/"},"wordCount":424,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png","keywords":["install Symfony 3 framework","install Symfony 3 with Nginx","install Symfony 3 with Nginx on Ubuntu"],"articleSection":["Tutorials","Ubuntu","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/","name":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png","datePublished":"2016-02-06T16:52:29+00:00","dateModified":"2022-12-09T13:12:06+00:00","description":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04 | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/symfony_vps.png","width":240,"height":60,"caption":"symfony vps"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-symfony-3-framework-with-nginx-on-ubuntu-14-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Symfony 3 Framework with Nginx on Ubuntu 14.04"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=18506"}],"version-history":[{"count":4,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18506\/revisions"}],"predecessor-version":[{"id":43990,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18506\/revisions\/43990"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18507"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}