add nginx.conf and improve readme
This commit is contained in:
@ -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
8
kanboard/nginx.conf
Normal file
@ -0,0 +1,8 @@
|
||||
server {
|
||||
server_name sudomain.your.domain;
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
}
|
||||
|
||||
listen 80;
|
||||
}
|
Reference in New Issue
Block a user