Last active
May 22, 2016 02:30
-
-
Save jpbarbosa/41e43098b570aff2a5672ce7fe5ece87 to your computer and use it in GitHub Desktop.
Nginx Basic Vhost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
listen [::]:80; | |
root /home/forge/{{domain}}/current/public; | |
index index.php index.html index.htm; | |
server_name {{domain}} www.{{domain}}; | |
location / { | |
try_files $uri $uri/ =404; | |
} | |
location = /favicon.ico { access_log off; log_not_found off; } | |
location = /robots.txt { access_log off; log_not_found off; } | |
#access_log syslog:server=unix:/dev/log; | |
#error_log syslog:server=unix:/dev/log error; | |
error_page 404 /404.html; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { | |
root /usr/share/nginx/html; | |
} | |
location ~ \.php$ { | |
try_files $uri =404; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment