1
0

Compare commits

...

2 Commits

2 changed files with 16 additions and 4 deletions

View File

@ -79,7 +79,10 @@
log_format combined_anon '$remote_addr_anon - $remote_user [$time_local] ' log_format combined_anon '$remote_addr_anon - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent ' '"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"'; '"$http_referer" "$http_user_agent"';
access_log /var/log/nginx/access.log combined_anon; log_format vcombined_anon '$host: $remote_addr_anon - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';
access_log /var/log/nginx/access.log vcombined_anon;
''; '';
virtualHosts = { virtualHosts = {

View File

@ -5,7 +5,7 @@
"ip.clerie.de" = { "ip.clerie.de" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations."/" = { locations."= /" = {
return = ''200 ' return = ''200 '
<html> <html>
<head> <head>
@ -53,28 +53,37 @@
types { } default_type "text/html; charset=utf-8"; types { } default_type "text/html; charset=utf-8";
''; '';
}; };
extraConfig = ''
access_log /var/log/nginx/ip.clerie.de.log vcombined_anon;
'';
}; };
"ip4.clerie.de" = { "ip4.clerie.de" = {
enableACME = true; enableACME = true;
addSSL = true; addSSL = true;
locations."/" = { locations."= /" = {
return = ''200 "$remote_addr\n"''; return = ''200 "$remote_addr\n"'';
extraConfig = '' extraConfig = ''
types { } default_type "text/plain; charset=utf-8"; types { } default_type "text/plain; charset=utf-8";
add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Origin *;
''; '';
}; };
extraConfig = ''
access_log /var/log/nginx/ip.clerie.de.log vcombined_anon;
'';
}; };
"ip6.clerie.de" = { "ip6.clerie.de" = {
enableACME = true; enableACME = true;
addSSL = true; addSSL = true;
locations."/" = { locations."= /" = {
return = ''200 "$remote_addr\n"''; return = ''200 "$remote_addr\n"'';
extraConfig = '' extraConfig = ''
types { } default_type "text/plain; charset=utf-8"; types { } default_type "text/plain; charset=utf-8";
add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Origin *;
''; '';
}; };
extraConfig = ''
access_log /var/log/nginx/ip.clerie.de.log vcombined_anon;
'';
}; };
}; };
} }