mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-11 16:09:18 +00:00
29 lines
440 B
Plaintext
29 lines
440 B
Plaintext
events { }
|
|
|
|
http {
|
|
|
|
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
proxy_pass http://${APP_AGORA_SERVER_IP}:8080;
|
|
}
|
|
|
|
location /admin {
|
|
root /usr/share/nginx/html;
|
|
ssi on;
|
|
set $ssihiddenservice "${APP_HIDDEN_SERVICE}";
|
|
index index.html;
|
|
}
|
|
|
|
location /admin/files {
|
|
client_max_body_size 0;
|
|
proxy_pass http://${APP_AGORA_FILEBROWSER_IP}:8080;
|
|
}
|
|
|
|
}
|
|
|
|
}
|