30 lines
No EOL
868 B
Text
Executable file
30 lines
No EOL
868 B
Text
Executable file
server {
|
|
access_log /var/log/nginx/posts.access.log combined;
|
|
|
|
root /var/www/posts;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name posts.zzls.xyz;
|
|
include configs/general.conf;
|
|
include configs/securityheaders.conf;
|
|
|
|
|
|
listen 443 ssl http2; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/posts.zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/posts.zzls.xyz/privkey.pem; # managed by Certbot
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
|
|
|
}
|
|
server {
|
|
if ($host = posts.zzls.xyz) {
|
|
return 301 https://$host$request_uri;
|
|
} # managed by Certbot
|
|
|
|
|
|
server_name posts.zzls.xyz;
|
|
listen 80;
|
|
return 404; # managed by Certbot
|
|
|
|
|
|
} |