Log plain http traffic in nginx

This commit is contained in:
Lutchy Horace 2021-03-19 11:42:32 -04:00
parent 89727c32f9
commit 0d664a5e6b
1 changed files with 3 additions and 0 deletions

View File

@ -155,6 +155,9 @@ server {
listen ${_listenip}80;
server_name $_domain;
error_log /var/log/nginx/${_domain}.error.log;
access_log /var/log/nginx/${_domain}.access.log main;
location /.well-known {
root /srv/http-content-combined/;
autoindex on;