llm-pricing / nginx.conf
philschmid's picture
philschmid HF staff
init
343b64b
raw
history blame
184 Bytes
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}