mirror of
https://github.com/runcitadel/apps.git
synced 2024-11-15 10:19:53 +00:00
23 lines
342 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|