Files
EventHubBack/docker/ci-reports/nginx.conf
T

16 lines
254 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
autoindex on;
charset utf-8;
location / {
try_files $uri $uri/ =404;
}
location ~* /allure/ {
try_files $uri $uri/ /index.html =404;
}
}