nginx/miom: disable logging
All checks were successful
Flake checks / Check (pull_request) Successful in 5m16s

This commit is contained in:
Benjamin Yule Bädorf 2024-02-25 16:44:01 +01:00
parent 0c7cef119d
commit 91fdf5b79a
Signed by: b12f
GPG key ID: 729956E1124F8F26

View file

@ -9,6 +9,12 @@
"www.miom.space" = {
enableACME = true;
addSSL = true;
extraConfig = ''
ErrorLog /dev/null
CustomLog /dev/null common
'';
locations."/" = {
extraConfig = ''
return 301 https://miom.space$request_uri;
@ -21,6 +27,11 @@
enableACME = true;
forceSSL = true;
extraConfig = ''
ErrorLog /dev/null
CustomLog /dev/null common
'';
locations = {
"/" = {
root = "/srv/www/miom.space";