web-search-for-the-nearest-hospitals / backend

ПоисКлиник
https://poisklinik.acceleratorpracticum.ru
2 stars 1 forks source link

Nginx conf #124

Closed PrudyvusP closed 9 months ago

PrudyvusP commented 10 months ago

В настоящее время любое обращение за исключеним /admin/ /redoc/ /swagger/ /api/ приводит к редиректу на http://poisklinik.acceleratorpracticum.ru/clinic-searcher/main. То есть http://poisklinik.acceleratorpracticum.ru/rofel/fm/dot/ru все равно приведет на нужную страницу вместо 404. Еще вот это оч странная штука - кусок адреса clinic-searcher/main в http://poisklinik.acceleratorpracticum.ru/clinic-searcher/main. Есть подозрение, что у нас немного конфиг nginxa съехал) Прикладываю рабочий конфиг с вызова эвакуаторов.

server {
    server_tokens off;
    listen 80;
    server_name localhost;

    include /etc/nginx/mime.types;

    location /admin/ {
        proxy_pass http://backend:8000;
    }

    location /api/ {
        proxy_set_header        X-Forwarded-Host  $host;
        proxy_pass http://backend:8000;
    }

    location /media/ {
        root /var/html;
    }

    location /static/ {
        root /var/html;
    }

    location / {
        root /usr/share/nginx/html;
        index  index.html index.htm;
        try_files $uri /index.html;
        proxy_set_header        Host $host;
        proxy_set_header        X-Real-IP $remote_addr;
        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header        X-Forwarded-Proto $scheme;
      }
      error_page   500 502 503 504  /50x.html;
      location = /50x.html {
        root   /var/html/frontend/;
      }
}