mirror of https://github.com/ansible/ansible.git
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.
24 lines
322 B
Plaintext
24 lines
322 B
Plaintext
8 years ago
|
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 / {
|
||
|
|
||
|
}
|
||
|
}
|