This commit is contained in:
William Mantly 2016-10-01 16:22:34 -04:00
parent b0b73cdb45
commit ea34a46d75

View File

@ -60,13 +60,13 @@ echo " Alias /static $workingPath/staticfiles" >> /etc/apache2/sites-enabled/
echo " WSGIDaemonProcess $name python-path=$workingPath:$workingPath/env:$workingPath/env/lib/python3.5/site-packages" >> /etc/apache2/sites-enabled/$name.conf
echo " WSGIProcessGroup $name" >> /etc/apache2/sites-enabled/$name.conf
echo " WSGIScriptAlias / $workingPath/project/wsgi.py" >> /etc/apache2/sites-enabled/$name.conf
echo " // socket.io conf" >> /etc/apache2/sites-enabled/$name.conf
echo " # socket.io conf" >> /etc/apache2/sites-enabled/$name.conf
echo " ProxyPreserveHost On" >> /etc/apache2/sites-enabled/$name.conf
echo " //these next two lines are to enable the wstunnel" >> /etc/apache2/sites-enabled/$name.conf
echo " # these next two lines are to enable the wstunnel" >> /etc/apache2/sites-enabled/$name.conf
echo " ProxyPass /socket.io/1/websocket ws://localhost:$nodePort/socket.io/1/websocket" >> /etc/apache2/sites-enabled/$name.conf
echo " ProxyPassReverse /socket.io/1/websocket ws://localhost:$nodePort/socket.io/1/websocket" >> /etc/apache2/sites-enabled/$name.conf
echo " //this line is to retrieve the socket.io.js to use" >> /etc/apache2/sites-enabled/$name.conf
echo " # this line is to retrieve the socket.io.js to use" >> /etc/apache2/sites-enabled/$name.conf
echo " ProxyPass /socket.io/ http://localhost:$nodePort/socket.io/" >> /etc/apache2/sites-enabled/$name.conf