Skip to content

Instantly share code, notes, and snippets.

@dib258
Created June 22, 2018 15:17
Show Gist options
  • Save dib258/fdf65a6d0e9eb36ab236f8645129ac6e to your computer and use it in GitHub Desktop.
Save dib258/fdf65a6d0e9eb36ab236f8645129ac6e to your computer and use it in GitHub Desktop.
nginx config file sites-enabled
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/monsite.com/before/*;
server {
listen 80;
listen [::]:80;
server_name monsite.com;
root /home/forge/monsite.com/public;
# FORGE SSL (DO NOT REMOVE!)
# ssl_certificate;
# ssl_certificate_key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers'... thing to cipher' ...;
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/nginx/dhparams.pem;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/monsite.com/server/*;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
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/monsite.com-error.log error;
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/monsite.com/after/*;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment