gradio/website/gradio.nginx.conf

9 lines
154 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/;
}
}