diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-01-31 20:33:31 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-01-31 20:33:31 -0500 |
commit | e0a28e8922ec89e8ab0142bf511ae81e31fcfb88 (patch) | |
tree | 55a5083bbaa0efb4dd5c83964b99aea870a8ee65 | |
parent | 923a0c35ff2cc4bef05f9fc7f029932735a3a78c (diff) | |
download | theglassyladies-e0a28e8922ec89e8ab0142bf511ae81e31fcfb88.tar.xz theglassyladies-e0a28e8922ec89e8ab0142bf511ae81e31fcfb88.zip |
fixed image root being wrong
-rw-r--r-- | usr/local/etc/nginx/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/etc/nginx/nginx.conf b/usr/local/etc/nginx/nginx.conf index c955077..bb2f09a 100644 --- a/usr/local/etc/nginx/nginx.conf +++ b/usr/local/etc/nginx/nginx.conf @@ -42,7 +42,7 @@ http { } location /images/ { - root /var/db/theglassyladies/images; + root /var/db/theglassyladies; autoindex on; } |