1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-10 04:46:22 -07:00

fix vagrant invalid file path error, update README

This commit is contained in:
Joshua Merrell 2017-08-12 16:46:00 -07:00
parent f9c7912a2c
commit 7ca552801b
5 changed files with 10 additions and 10 deletions

16
gochan-http.nginx Normal file
View file

@ -0,0 +1,16 @@
# pass everything to gochan via HTTP
# this should go in /etc/nginx/sites-enabled. Change as necessary.
#
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:8080;
}
location ~ /\.ht {
deny all;
}
}