sizzledizzle

New Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by sizzledizzle

  1. I've encountered this post that kind of explains a workaround. http://forum.bittorrent.com/topic/31556-bug-with-fix-webuijs-has-hard-coded-absolute-url/?hl=nginx#entry107204 However, is there an update where I can get this to work? My current nginx setup is : server { listen 80; server_name "LINK"; root /var/www; return 301 https://$server_name$request_uri; index index.html index.php index.htm; location / { try_files $uri $uri/ =404; } location ~ /\.ht { deny all; }} server { listen 443 ssl; server_name "LINK"; root /var/www; index index.html index.php index.htm; ssl_certificate /etc/ssl/"LINK"/"LINK"_bundle.crt; ssl_certificate_key /etc/ssl/"LINK"/"LINK".key; ssl_session_timeout 5m; location / { try_files $uri $uri/ =404; } include /etc/nginx/sites-available/btsync-loc; location ~ /\.ht { deny all; } } and my proxy file is location /gui/ { proxy_pass http://127.0.0.1:8888/gui; proxy_redirect https://$host:8888/gui /gui/;} Is there something I'm missing? I can get it to work with other apps but can't seem to figure it out here. Any guidance would be appreciated! Thanks!