SeaFox
Explorer
- Joined
- Aug 6, 2013
- Messages
- 98
All right. I tried to follow this guide, and while I had some hiccups on the initial jail and install bit, I am at this point very close to getting this working.
Right now:
I'm only setting up forwards for two servers right now: Transmission on a separate machine, and my Airsonic jail on the NAS.
Both can be currently reached at
When I go to https://me.ddns.tld/transmission, I do get prompted for my login for the transmission web interface, but when I log in I get this code 409 page.
When I go to https://me.ddns.tld/airsonic, I actually get the login page for my Airsonic web interface. It looks like it's working fine, but after I log in I get taken to a screen with the background color and that's it. The interface itself never loads.
Here is my nginx.conf:
And my proxy_setup.conf:
Edit: Okay. I figured out the Transmission issue. I'm required to go through the base IP itself first. The error was because I was trying to redirect right into /transmission/web. Shortening the proxy_pass address to just the base
Right now:
- I get the "Welcome to nginx!" test page when I go to https://me.ddns.tld, with the green lock icon and all.
- I'm getting an A+ security rating with no special futzing around (!).
- But I can't access the actual services I have set up. :(
I'm only setting up forwards for two servers right now: Transmission on a separate machine, and my Airsonic jail on the NAS.
Both can be currently reached at
http://me.ddns.tld:portnumber
.When I go to https://me.ddns.tld/transmission, I do get prompted for my login for the transmission web interface, but when I log in I get this code 409 page.
When I go to https://me.ddns.tld/airsonic, I actually get the login page for my Airsonic web interface. It looks like it's working fine, but after I log in I get taken to a screen with the background color and that's it. The interface itself never loads.
Here is my nginx.conf:
Code:
#user nobody; worker_processes 1; # This default error log path is compiled-in to make sure configuration parsing # errors are logged somewhere, especially during unattended boot when stderr # isn't normally logged anywhere. This path will be touched on every nginx # start regardless of error log location configured here. See # https://trac.nginx.org/nginx/ticket/147 for more info. # #error_log /var/log/nginx/error.log; # #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 443 ssl; server_name me.ddns.tld; include ssl_common.conf; include proxy_setup.conf; #charset koi8-r; #access_log logs/host.access.log main; location / { root /usr/local/www/nginx; index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/local/www/nginx-dist; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }
And my proxy_setup.conf:
Code:
location /transmission { proxy_pass http://192.168.9.231:9091/transmission/web; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location /airsonic { proxy_pass http://192.168.9.226:4040/airsonic; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }
Edit: Okay. I figured out the Transmission issue. I'm required to go through the base IP itself first. The error was because I was trying to redirect right into /transmission/web. Shortening the proxy_pass address to just the base
ip:port
fixed that. Still stuck on Airsonic, though. Shortening its proxy_pass address did not change things (although it did take longer for the login page to come up).
Last edited: