add nginx.conf and improve readme

This commit is contained in:
2025-03-27 19:21:59 +01:00
parent 119196a1cc
commit 52489241d7
16 changed files with 162 additions and 4 deletions

View File

@ -4,7 +4,7 @@ services:
restart: always
image: kanboard/kanboard:latest
ports:
- "80:80"
- "8080:80"
volumes:
- ./data:/var/www/app/data
- ./plugins:/var/www/app/plugins

8
kanboard/nginx.conf Normal file
View File

@ -0,0 +1,8 @@
server {
server_name sudomain.your.domain;
location / {
proxy_pass http://127.0.0.1:8080;
}
listen 80;
}