You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I generated a TLS certificate with certbot for the subdomain (whisper.mydomain.com) and configured nginx proxy manager to listen into that subdomain. The only special thing about my setup its that it connects to port 445 for external https:
I am not that familiar with deploying app with nginx, but here are the troubleshooting that I experienced:
Make sure you've added "A type" records to your domain service: It should be an public IPv4 address, which you can get by searching "What is my IP?" in Google.
If you use a specific location other than "/" in nginx.conf, you should also pass the --root_path option when starting the app.
For example, if this is your nginx.conf:
Make sure you've added the ports as an "inbound rule" in your firewall. For you this would be port 445
I don't know about "Nginx Proxy Manager" software, but the gradio needs specific header setting ( e.g. proxy_set_header Upgrade $http_upgrade ) in nginx.conf like the example above, according to the official documentation. So you should try to edit it in the software
No idea what caused the problem with your nginx, but hope this helps
Hi Team!
I have an instance of Whisper-WebUI running behind a reverse proxy (Nginx proxy manager). Till now it is not working with its public subdomain name.
This is the env file:
CONTAINER_NAME=whisperui
CONTAINER_IMAGE=jhj0517/whisper-webui:latest
TZ=Europe/Madrid
CUDA_VISIBLE_DEVICES=''
POLICY_RESTART=unless-stopped
WHISPER_PORT=8080:7860
WHISPER_MODELS_VOLUME=/docker/data/models:/Whisper-WebUI/models
WHISPER_OUTPUTS_VOLUME=/docker/data/outputs:/Whisper-WebUI/outputs
LOG_TYPE=json-file
LOG_SIZE=10M
LOG_FILES=3
And the compose file:
https://pastebin.com/raw/qrG1MAUL
I generated a TLS certificate with certbot for the subdomain (whisper.mydomain.com) and configured nginx proxy manager to listen into that subdomain. The only special thing about my setup its that it connects to port 445 for external https:
https://whisper.mydomain.com:445 > My firewall > https://nginxproxymanagerproxyhost:443
Whenever I connect to the instance it responds but doesnt' quite end loading:
It works perfectly fine locally or if I use tailscale.
The text was updated successfully, but these errors were encountered: