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:
parent
f9c7912a2c
commit
7ca552801b
5 changed files with 10 additions and 10 deletions
16
gochan-http.nginx
Normal file
16
gochan-http.nginx
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue