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.

17 lines
275B

  1. upstream compendium {
  2. server web:5000;
  3. }
  4. server {
  5. listen 80;
  6. location / {
  7. proxy_pass http://compendium;
  8. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  9. proxy_set_header Host $http_host;
  10. proxy_redirect off;
  11. }
  12. }