15 lines
302 B
Plaintext
15 lines
302 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerName isso-dev.local
|
||
|
|
||
|
ServerAdmin webmaster@localhost
|
||
|
DocumentRoot /var/www/isso/
|
||
|
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
|
||
|
ProxyPass /isso/ uwsgi://127.0.0.1:8080/
|
||
|
|
||
|
</VirtualHost>
|
||
|
|
||
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|