Last active
December 4, 2020 14:50
-
-
Save m-adamski/005d74982991d75f1754704cbd3bdf60 to your computer and use it in GitHub Desktop.
An example configuration of the virtual host for NGINX
This file contains 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; | |
server_name <domain.name>; | |
server_tokens off; | |
if ($host = <domain.name>) { | |
return 301 https://$host$request_uri; | |
} | |
return 404; | |
} | |
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2 ipv6only=on; | |
server_name <domain.name>; | |
server_tokens off; | |
root /var/www/vhosts/<domain.name>/current/public; | |
index index.php index.html index.htm; | |
# Configuration of the Content Security Policy | |
add_header Content-Security-Policy "default-src 'self' https://*.googleapis.com https://*.gstatic.com; style-src 'self' 'unsafe-inline' https://*.googleapis.com https://*.gstatic.com"; | |
add_header X-Content-Type-Options nosniff; | |
add_header X-XSS-Protection "1; mode=block"; | |
add_header X-Frame-Options DENY; | |
add_header Strict-Transport-Security "max-age=31536000 includeSubDomains" always; | |
# SSL Configuration | |
ssl_session_timeout 1d; | |
ssl_session_cache shared:SSL:10m; | |
ssl_session_tickets off; | |
ssl_protocols TLSv1.2 TLSv1.3; | |
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; | |
ssl_prefer_server_ciphers off; | |
ssl_stapling on; | |
ssl_stapling_verify on; | |
# SSL Certificate | |
ssl_certificate /etc/ssl/<domain.name>/<domain.name>.pem; | |
ssl_certificate_key /etc/ssl/<domain.name>/<domain.name>.key; | |
location / { | |
try_files $uri /index.php$is_args$args; | |
} | |
location ~ ^/index\.php(/|$) { | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass unix:/run/php/php7.1-fpm.sock; | |
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; | |
fastcgi_param DOCUMENT_ROOT $realpath_root; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
internal; | |
} | |
location ~ \.php$ { | |
return 404; | |
} | |
error_log /var/log/nginx/<domain.name>_error.log; | |
access_log /var/log/nginx/<domain.name>_access.log; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment