dgutie

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by dgutie

  1. I am using nginx to reverse proxy a few applications already, but I am having trouble getting the settings for PhotoShow. I just followed my normal setup and it is not passing through. It will log in on /photoshow then just show nginx 404 not found. location /sickrage { include /config/nginx/proxy.conf; proxy_pass http://192.168.0.101:8081/sickrage; auth_basic "Restricted Content"; auth_basic_user_file /config/nginx/.htpasswd; } location /photoshow { include /config/nginx/proxy.conf; proxy_pass http://192.168.0.101:8088; auth_basic "Restricted Content"; auth_basic_user_file /config/nginx/.htpasswd; } Any help would be great thanks.