gradio/website/gradio.nginx.conf

12 lines
224 B
Plaintext
Raw Normal View History

2021-12-22 16:45:23 +08:00
# Copy to /etc/nginx/conf.d/gradio.nginx.conf
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8080/;
}
location /demo/ {
proxy_pass http://localhost:8070/demo/;
}
}