54 lines
1.3 KiB
ApacheConf
54 lines
1.3 KiB
ApacheConf
# vim:set ft=apache:
|
|
<VirtualHost *:80>
|
|
ServerName local.desu.ltd
|
|
DocumentRoot /usr/local/apache2/htdocs
|
|
<Directory "/usr/local/apache2/htdocs">
|
|
AllowOverride All
|
|
Options -Indexes +FollowSymLinks
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName jellyfin.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass /socket http://192.168.102.200:8081/
|
|
ProxyPass / http://192.168.102.200:8081/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName grafana.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.200:8082/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName sonarr.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.200:8083/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName transmission.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.200:8084/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName jackett.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.200:8085/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName radarr.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.200:8086/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName netbox.local.desu.ltd
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.200:8087/
|
|
</VirtualHost>
|