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

This commit is contained in:
Benjamin Yule Bädorf 2024-02-25 16:44:01 +01:00 committed by b12f
parent 0e89b7f210
commit de04556191
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873

View file

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