added highscore board

master
Thomas Rudin 2018-06-18 13:00:25 +02:00
parent eafca14895
commit 5928414731
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
location /highscore/ {
proxy_pass http://highscore:8080/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
access_log off;
}

View File

@ -55,6 +55,15 @@ services:
- "./data/nginx/routes:/routes"
- "./data/nginx/html:/html"
highscore:
image: registry.rudin.io/x86/minetest-xp-highscore
restart: always
environment:
PGHOST: postgres
PGUSER: postgres
PGDATABASE: postgres
PGPASSWORD: enter
PGPORT: 5432
forum:
image: registry.rudin.io/x86/vanilla-forum