Pointing chat command at localhost now

This commit is contained in:
Ubergeek
2019-02-19 16:10:55 +00:00
parent b32589a00c
commit c78dbd8e9f
3 changed files with 27 additions and 3 deletions

View File

@@ -1,7 +1,14 @@
<VirtualHost *:80>
ServerAdmin webmaster@thunix.net
ServerAdmin webmaster@thunix.net
ServerName thunix.tilde.chat
DocumentRoot /var/www/thunix/chat
DocumentRoot /var/www/thunix.cf
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directorymatch "^/.*/\.git/">
Order deny,allow
Deny from all
</Directorymatch>
RewriteEngine on
RewriteCond %{SERVER_NAME} =thunix.tilde.chat
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>