default_server;
server_name 172.22.130.62;
#
root /usr/share/nginx/html;
index index.html index.htm;
add_header Cache-Control "no-store, no-cache, must-revalidate";
expires off;
#
location /api {
add_header Content-Type application/json;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://172.22.130.62:8080/api;
}
#
location / {
try_files $uri /index.html;
}
#
location /apidocs {
root /usr/share/nginx/html/apidocs;
index index.html index.htm;
}
}
из-за повторного может?
root /usr/share/nginx/html;
index index.html index.htm;
└── apidocs ├── apidocs В котором нужный index.html?
Разобрался, нужно было просто указать путь до html. А не до прямой папки.. Всё работает теперь как надо)
Обсуждают сегодня