35 lines
843 B
ApacheConf
35 lines
843 B
ApacheConf
# vim:set ft=apache:
|
|
<VirtualHost *:80>
|
|
ServerName desu.local
|
|
DocumentRoot /usr/local/apache2/htdocs
|
|
<Directory "/usr/local/apache2/htdocs">
|
|
AllowOverride All
|
|
Options -Indexes +FollowSymLinks
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName jellyfin.desu.local
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.10:8081/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName grafana.desu.local
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.10:8082/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName sonarr.desu.local
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.10:8083/
|
|
</VirtualHost>
|
|
<VirtualHost *:80>
|
|
ServerName transmission.desu.local
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
ProxyPass / http://192.168.102.10:8084/
|
|
</VirtualHost>
|