Installation for S&D
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
382 B

2 years ago
  1. server {
  2. listen 80;
  3. server_name core.sandd;
  4. location / {
  5. proxy_pass http://sandd_core/;
  6. proxy_http_version 1.1;
  7. proxy_set_header Connection "";
  8. }
  9. }
  10. server {
  11. listen 80;
  12. server_name ingest.sandd;
  13. location / {
  14. proxy_pass http://sandd_ingest/;
  15. proxy_http_version 1.1;
  16. proxy_set_header Connection "";
  17. }
  18. }