Nginx에 conf 파일 추가
등록일: 2025. 6. 10. 3:37
default.conf와 같은 경로에 추가 [whisper.conf]
server {
listen 82;
server_name whisper.sleepzz.xyz;
location / {
proxy_pass [http://172.17.0.1:7860](http://172.17.0.1:7860);
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}