server { server_name conformity-assessment-testing.ihe-europe.net; listen 172.16.0.3:80 default; listen 443 ssl; ssl_certificate /opt/gazelle/cert/cats.pem; ssl_certificate_key /opt/gazelle/cert/cats.key; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; add_header Via "nginx on CAT server for cats vm"; location / { proxy_pass http://localhost:20080; allow 172.16.0.248; allow 172.16.0.249; allow 172.16.0.250; allow 172.16.0.251; allow 172.16.0.252; allow 172.16.0.253; allow 172.16.1.2; allow 172.16.1.3; allow 172.16.1.4; allow 172.16.0.5; allow 172.16.0.6; allow 172.16.0.7; allow 172.16.0.8; allow 172.16.0.9; allow 172.16.0.10; deny all; } }