minor port changes + add apache + vhosts

This commit is contained in:
Kishan Takoordyal
2021-02-12 10:35:11 +04:00
parent fbe9dceb89
commit 0588028b97
5 changed files with 41 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
<VirtualHost *:8080>
ServerName localhost
ServerAdmin kishan@kinesis.games
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:9000/
ProxyPassReverse / http://127.0.0.1:9000/
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.*) ws://127.0.0.1:9000/$1 [P,L]
RewriteCond %{HTTP:Upgrade} !=websocket [NC]
RewriteRule /(.*) http://127.0.0.1:9000/$1 [P,L]
</VirtualHost>

View File

@@ -0,0 +1,8 @@
<VirtualHost *:80>
DocumentRoot "/var/www/html"
ServerName localhost
ServerAdmin kishan@kinesis.games
<Directory "/var/www/html/">
AllowOverride all
</Directory>
</VirtualHost>