gradio/website/gradio.nginx.conf
2021-12-22 08:45:23 +00:00

12 lines
224 B
Plaintext

# 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/;
}
}