Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reltonfidelisdev/cb10bfa896c3daf9eaf732d01d6dafbf to your computer and use it in GitHub Desktop.
Save reltonfidelisdev/cb10bfa896c3daf9eaf732d01d6dafbf to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name NOMEDOAPP.app;
root /home/martins/Dropbox/vhosts/NOMEDOAPP.app;
index index.php index.html index.htm;
charset utf-8;
location / {
try_files $uri $uri/ /index.php index.php;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/NOMEDOAPP.app-error.log error;
error_page 404 /index.php;
sendfile off;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment