diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-07-01 22:06:47 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-07-01 22:06:47 +0200 |
commit | 494d071836c441c7b255db9d26cfac42dac1a169 (patch) | |
tree | 1770c9f63f70a73e0a4d1a907712ca384a235d5e | |
parent | 557478154a5adea8ccac4f20bc703c22340018e3 (diff) | |
download | Nix-494d071836c441c7b255db9d26cfac42dac1a169.tar.gz Nix-494d071836c441c7b255db9d26cfac42dac1a169.tar.zst Nix-494d071836c441c7b255db9d26cfac42dac1a169.zip |
Fix virtual host in httpd logs
-rw-r--r-- | modules/private/websites/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/private/websites/default.nix b/modules/private/websites/default.nix index 0d420ea..add4e42 100644 --- a/modules/private/websites/default.nix +++ b/modules/private/websites/default.nix | |||
@@ -56,7 +56,7 @@ let | |||
56 | }; | 56 | }; |
57 | customLog = { | 57 | customLog = { |
58 | extraConfig = '' | 58 | extraConfig = '' |
59 | LogFormat "%v:%p %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combinedVhost | 59 | LogFormat "%{Host}i:%p %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combinedVhost |
60 | ''; | 60 | ''; |
61 | }; | 61 | }; |
62 | }; | 62 | }; |