You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/utils/docker/cloudstack-simulator/nginx_default.conf

24 lines
322 B
Plaintext

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 / {
}
}