add dedicated logs to http sites

master
histausse 2 years ago
parent e5dbdf1e3a
commit 86b8b1b12b
Signed by: histausse
GPG Key ID: 67486F107F62E9E9

@ -4,16 +4,20 @@ server {
listen [::]:80;
server_name {{ item.key }};
# Redirect to https
location / {
return 302 https://$host$request_uri;
}
access_log /var/log/nginx/http_{{ item.key }}.log;
error_log /var/log/nginx/http_{{ item.key }}_error.log;
# ACME directory, to limit interaction with certbot
location /.well-known/acme-challenge/ {
root /var/www/well-known/acme-challenge/;
}
# Redirect to https
location / {
return 302 https://$host$request_uri;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;

Loading…
Cancel
Save