Skip to content

Commit c1938f9

Browse files
committed
Polish
1 parent 6783ffb commit c1938f9

File tree

6 files changed

+4
-8
lines changed

6 files changed

+4
-8
lines changed

doc/example/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ services:
99
- ./letsencrypt:/etc/letsencrypt
1010
depends_on:
1111
- db
12-
links:
13-
- db
1412
db:
1513
image: mariadb
1614
restart: always

rootfs/etc/nginx/conf.d/default.conf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ server {
66

77
access_log /data/logs/manager.log proxy;
88

9-
set $server 127.0.0.1;
10-
set $port 81;
11-
129
include conf.d/include/block-exploits.conf;
1310

1411
location /health {

rootfs/etc/nginx/nginx.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ http {
4747
# HIT
4848
# - (dash) - request never reached to upstream module. Most likely it was processed at Nginx-level only (e.g. forbidden, redirects, etc) (Ref: Mail Thread
4949
log_format proxy '[$time_local] $upstream_cache_status $upstream_status $status - $request_method $scheme $host "$request_uri" [Client $remote_addr] [Length $body_bytes_sent] [Gzip $gzip_ratio] [Sent-to $server] "$http_user_agent" "$http_referer"';
50+
log_format standard '[$time_local] $status - $request_method $scheme $host "$request_uri" [Client $remote_addr] [Length $body_bytes_sent] [Gzip $gzip_ratio] "$http_user_agent" "$http_referer"';
5051

5152
access_log /data/logs/default.log proxy;
5253

src/backend/templates/dead_host.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ server {
44
{% include "_listen.conf" %}
55
{% include "_certificates.conf" %}
66

7-
access_log /data/logs/dead_host-{{ id }}.log proxy;
7+
access_log /data/logs/dead_host-{{ id }}.log standard;
88

99
{{ advanced_config }}
1010

src/backend/templates/letsencrypt-request.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ server {
44
listen 80;
55
server_name {{ domain_names | join: " " }};
66

7-
access_log /data/logs/letsencrypt-requests.log proxy;
7+
access_log /data/logs/letsencrypt-requests.log standard;
88

99
include conf.d/include/letsencrypt-acme-challenge.conf;
1010

src/backend/templates/redirection_host.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ server {
66
{% include "_assets.conf" %}
77
{% include "_exploits.conf" %}
88

9-
access_log /data/logs/redirection_host-{{ id }}.log proxy;
9+
access_log /data/logs/redirection_host-{{ id }}.log standard;
1010

1111
{{ advanced_config }}
1212

0 commit comments

Comments
 (0)