mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
automated integration tests for cloudstack (#20552)
This commit is contained in:
parent
b58cf0d23a
commit
aaf4f04574
92 changed files with 1248 additions and 193 deletions
23
test/utils/docker/cloudstack-simulator/nginx_default.conf
Normal file
23
test/utils/docker/cloudstack-simulator/nginx_default.conf
Normal file
|
@ -0,0 +1,23 @@
|
|||
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 / {
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue