소스 검색

Fixed the access log path to match the HTTP one. This also fixes its handling by logrotate.

Jocelyn Le Sage 3 년 전
부모
커밋
5aae8cd0e3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docker/rootfs/etc/nginx/conf.d/default.conf

+ 1 - 1
docker/rootfs/etc/nginx/conf.d/default.conf

@@ -30,7 +30,7 @@ server {
 	set $port "443";
 
 	server_name localhost;
-	access_log /data/logs/fallback-access.log standard;
+	access_log /data/logs/fallback_access.log standard;
 	error_log /dev/null crit;
 	ssl_certificate /data/nginx/dummycert.pem;
 	ssl_certificate_key /data/nginx/dummykey.pem;