diff --git a/conf/nginx/basic.conf b/conf/nginx/basic.conf new file mode 100644 index 00000000..a09d7c3b --- /dev/null +++ b/conf/nginx/basic.conf @@ -0,0 +1,20 @@ +server { + + server_name example.com www.example.com; + + access_log /var/log/nginx/example.com.access.log; + error_log /var/log/nginx/example.com.error.log; + + root /var/www/example.com/htdocs; + index index.php index.htm index.html; + + location / { + try_files $uri $uri/ /index.php?$args; + } + + location ~ \.php$ { + include fastcgi_params; + fastcgi_pass unix:/var/run/php5-fpm.sock; + } +} +