23 lines
322 B
Text
23 lines
322 B
Text
upstream cloudstack-backend {
|
|
server 127.0.0.1:8080;
|
|
}
|
|
|
|
server {
|
|
listen 8888 default_server;
|
|
|
|
root /var/www/html;
|
|
|
|
server_name _;
|
|
|
|
# waiting for zone to be deployed
|
|
if (!-f /var/www/html/admin.json) {
|
|
return 503;
|
|
}
|
|
|
|
location /client {
|
|
proxy_pass http://cloudstack-backend;
|
|
}
|
|
location / {
|
|
|
|
}
|
|
}
|