llm-pricing / nginx.conf
philschmid's picture
philschmid HF staff
update
87d3d61
raw
history blame contribute delete
No virus
228 Bytes
server {
listen 7860 default_server;
listen [::]:7860 default_server;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}