Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <VirtualHost *:443>
- ServerName some.domain.name
- ServerAlias some.domain.name
- ServerAdmin webmaster@localhost
- DocumentRoot /var/www/html
- SSLEngine on
- SSLProtocol all -SSLv2
- SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
- SSLCertificateFile /etc/apache2/ssl/apache.crt
- SSLCertificateKeyFile /etc/apache2/ssl/apache.key
- <Location /sonarr>
- ProxyPass http://192.168.0.2:8989/sonarr
- ProxyPassReverse http://192.168.0.2:8989/sonarr
- # permit by USER || IP
- Satisfy any
- # USER
- AuthUserFile /etc/apache2/passwds/NzbDrone/.htpasswd
- AuthName "Sonarr - Proxy"
- AuthType Basic
- Require valid-user
- # IP
- order deny,allow
- deny from all
- allow from 192.168.0.
- </Location>
- <Location /couch>
- ProxyPass http://192.168.0.2:5050/couch
- ProxyPassReverse http://192.168.0.2:5050/couch
- # permit by USER || IP
- Satisfy any
- # USER
- AuthUserFile /etc/apache2/passwds/couchpotato/.htpasswd
- AuthName "Couchpotato - Proxy"
- AuthType Basic
- Require valid-user
- # IP
- order deny,allow
- deny from all
- allow from 192.168.0.
- </Location>
- <Location /sabnzbd>
- ProxyPass http://192.168.0.2:8080/sabnzbd
- ProxyPassReverse http://192.168.0.2:8080/sabnzbd
- # permit by USER || IP
- Satisfy any
- # USER
- AuthUserFile /etc/apache2/passwds/sabnzbd/.htpasswd
- AuthName "SABnzbd - Proxy"
- AuthType Basic
- Require valid-user
- # IP
- order deny,allow
- deny from all
- allow from 192.168.0.
- </Location>
- </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement