mirror of
https://github.com/Nathanwoodburn/hnschat-web.git
synced 2025-01-18 11:48:13 +11:00
20 lines
466 B
Plaintext
20 lines
466 B
Plaintext
<VirtualHost *:80>
|
|
# ServerName localhost
|
|
DocumentRoot /var/www/html
|
|
|
|
# ProxyPass for WebSocket handling
|
|
ProxyPass /wss ws://hnschat-server:4444/
|
|
ProxyPassReverse /wss ws://hnschat-server:4444/
|
|
|
|
<Directory /var/www/html>
|
|
Options +FollowSymLinks +MultiViews
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
# PHP settings
|
|
DirectoryIndex index.php
|
|
AddType application/x-httpd-php .php
|
|
|
|
</VirtualHost>
|