pdf-trainer-ui / nginx.conf
Avinashnalla7's picture
fix: restore UI source + docker build
c881787
raw
history blame contribute delete
150 Bytes
server {
listen 7860;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}