80 lines
2.1 KiB
Plaintext
80 lines
2.1 KiB
Plaintext
server {
|
|
listen 80;
|
|
server_name ${DOMAIN};
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name ${DOMAIN} www.${DOMAIN};
|
|
|
|
ssl_certificate /etc/certs/${DOMAIN}.pem;
|
|
ssl_certificate_key /etc/certs/${DOMAIN}-key.pem;
|
|
|
|
add_header Strict-Transport-Security "max-age=31536000" always;
|
|
|
|
ssl_session_cache shared:SSL:20m;
|
|
ssl_session_timeout 10m;
|
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
ssl_prefer_server_ciphers on;
|
|
ssl_ciphers "ECDH+AESGCM:ECDH+AES256:ECDH+AES128:!ADH:!AECDH:!MD5;";
|
|
|
|
root /var/www/html/web;
|
|
index index.php;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_comp_level 6;
|
|
gzip_buffers 16 8k;
|
|
gzip_http_version 1.1;
|
|
gzip_min_length 0;
|
|
gzip_types text/plain application/javascript text/css text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype;
|
|
|
|
client_max_body_size 100M;
|
|
|
|
location ~ /.well-known/acme-challenge {
|
|
allow all;
|
|
root /var/www/html;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
fastcgi_buffers 8 16k;
|
|
fastcgi_buffer_size 32k;
|
|
fastcgi_connect_timeout 60;
|
|
fastcgi_read_timeout 300;
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass wordpress:9000;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
|
|
location = /favicon.ico {
|
|
log_not_found off; access_log off;
|
|
}
|
|
location = /robots.txt {
|
|
log_not_found off; access_log off; allow all;
|
|
}
|
|
location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
|
|
expires max;
|
|
log_not_found off;
|
|
}
|
|
}
|