citadel-apps/apps/agora/data/nginx.conf
2022-06-10 20:20:46 +02:00

23 lines
342 B
Nginx Configuration File

events { }
http {
server {
listen 80;
server_name _;
location / {
proxy_pass http://agora:8080;
}
location /admin {
include /etc/nginx/mime.types;
root /usr/share/nginx/html;
index index.html;
}
location /admin/files {
proxy_pass http://filebrowser:8080;
}
}
}