mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
9 lines
154 B
Plaintext
9 lines
154 B
Plaintext
|
# Copy to /etc/nginx/conf.d/gradio.nginx.conf
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
location / {
|
||
|
proxy_pass http://localhost:8080/;
|
||
|
}
|
||
|
}
|