2017-03-08 10:23:35 +00:00
|
|
|
# Alles wat ik voel
|
|
|
|
|
|
|
|
Een project door Ruben van de Ven voor de release van _Alles Wat Ik Voel_ van Stine Jensen.
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
`virtualenv --python=python3 env`
|
|
|
|
|
|
|
|
`source env/bin/activate`
|
|
|
|
|
|
|
|
`pip install -r requirements.txt`
|
|
|
|
|
2017-03-08 10:56:47 +00:00
|
|
|
Add the following to /etc/apache/sites-available/00-alleswatikvoel.conf
|
|
|
|
|
|
|
|
```
|
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName alleswatikvoel.rubenvandeven.com
|
|
|
|
ProxyPass / http://localhost:8881/
|
|
|
|
ProxyPassReverse / http://localhost:8881/
|
|
|
|
</VirtualHost>
|
|
|
|
```
|
|
|
|
|
|
|
|
Add to supervisor:
|
|
|
|
|
|
|
|
`ln -s /home/ruben/hosts/alleswatikvoel/supervisord.conf /etc/supervisor/conf.d/alleswatikvoel.conf`
|
|
|
|
|
|
|
|
`supervisorctl reread`
|
|
|
|
|
|
|
|
`supervisorctl update`
|
|
|
|
|