You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
369 B
27 lines
369 B
3 years ago
|
events { }
|
||
|
|
||
|
http {
|
||
|
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name _;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://${APP_AGORA_SERVER_IP}:8080;
|
||
|
}
|
||
|
|
||
|
location /admin {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html;
|
||
|
}
|
||
|
|
||
|
location /admin/files {
|
||
|
client_max_body_size 0;
|
||
|
proxy_pass http://${APP_AGORA_FILEBROWSER_IP}:8080;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|