NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
bbaraniec
May 17, 2011Luminary
SABnzbget+sickbeard+couchpotato reverse proxy https-http
Current setup: HTTP disabled, HTTPS enabled on Pro. On router redirected port 443 to local IP of nas Public share accessible via https://mydomain.com but without forwarding 80 I get timeout. When ...
sphardy1
May 19, 2011Apprentice
Both requirements can be implemented via Apache settings
For HTTP to HTTPS, modify the configuration for the share to use mod_rewrite as follows:
To implement proxying:
For HTTP to HTTPS, modify the configuration for the share to use mod_rewrite as follows:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
To implement proxying:
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_connect_module /usr/lib/apache2/modules/mod_proxy_connect.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
ProxyPass /path http://<target_url>
ProxyPassReverse /path http://<target_url>
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!