summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
Diffstat (limited to 'custom')
-rw-r--r--custom/ymir.nginx8
1 files changed, 6 insertions, 2 deletions
diff --git a/custom/ymir.nginx b/custom/ymir.nginx
index ba40d59a..c510319f 100644
--- a/custom/ymir.nginx
+++ b/custom/ymir.nginx
@@ -51,7 +51,9 @@ server {
51 proxy_pass http://192.168.0.2:80/.well-known/acme/; 51 proxy_pass http://192.168.0.2:80/.well-known/acme/;
52 } 52 }
53 53
54 root /srv/www/dirty-haskell.org; 54 location / {
55 root /srv/www/dirty-haskell.org;
56 }
55} 57}
56 58
57server { 59server {
@@ -66,5 +68,7 @@ server {
66 proxy_pass http://192.168.0.2:80/.well-known/acme/; 68 proxy_pass http://192.168.0.2:80/.well-known/acme/;
67 } 69 }
68 70
69 root /srv/www/dirty-haskell.org; 71 location / {
72 root /srv/www/dirty-haskell.org;
73 }
70} 74}