get madone nginx + weechat up & running

master
Paul Walko 2019-09-02 07:14:31 +02:00
parent 57c819d80e
commit f7e9795ef7
3 changed files with 10 additions and 1 deletions

3
.gitignore vendored
View File

@ -5,3 +5,6 @@ docker-fogcutter/nginx/config
docker-fogcutter/plex/config
docker-fogcutter/syncthing/config
docker-fogcutter/syncthing/sync
docker-madone/nginx/config
docker-madone/syncthing/config
docker-madone/syncthing/sync

View File

@ -15,6 +15,10 @@ docker run \
--volume $PWD/config:/config:rw \
--volume $PWD/nginx.conf:/config/nginx/nginx.conf:ro \
--volume $PWD/site-confs:/config/nginx/site-confs:ro \
--volume $PWD/../syncthing/sync:/sync-docker:ro \
--volume $HOME/files:/files-docker:ro \
--volume $PWD/syncthing-htpasswd:/config/nginx/syncthing-htpasswd:ro \
--volume $PWD/sync-htpasswd:/config/nginx/sync-htpasswd:ro \
--publish 51.159.29.122:80:80 \
--publish 51.159.29.122:443:443 \
--publish [2001:bc8:6005:19:208:a2ff:fe0c:917c]:80:80 \

View File

@ -3,7 +3,7 @@ server {
listen [::]:80;
server_name madone.seaturtle.pw;
return 301 https://seaturtle.pw$request_uri;
return 301 https://madone.seaturtle.pw$request_uri;
}
server {
@ -48,4 +48,6 @@ server {
alias /sync-docker;
autoindex on;
}
# Proxy everything else???
}