mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
soft code again, get microsoft working again by adding FQDN
This commit is contained in:
parent
a2146482b2
commit
2d9704947c
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
<VirtualHost _default_:80>
|
<VirtualHost _default_:80>
|
||||||
ErrorLog /var/log/apache2/error.log
|
ErrorLog /var/log/apache2/error.log
|
||||||
CustomLog /var/log/apache2/access.log combined
|
CustomLog /var/log/apache2/access.log combined
|
||||||
<Directory /library/www/html>
|
<Directory {{ doc_root }}>
|
||||||
Options Indexes FollowSymLinks
|
Options Indexes FollowSymLinks
|
||||||
AllowOverride None
|
AllowOverride None
|
||||||
Require all granted
|
Require all granted
|
||||||
|
@ -19,8 +19,8 @@
|
||||||
ServerName iiab.io
|
ServerName iiab.io
|
||||||
Include /etc/apache2/capture
|
Include /etc/apache2/capture
|
||||||
# ProxyPreserveHost On
|
# ProxyPreserveHost On
|
||||||
# ProxyPass / http://box.lan:9090/
|
# ProxyPass / http://box.lan:{{ captive_portal_port }}/
|
||||||
# ProxyPassReverse / http://box.lan:9090/
|
# ProxyPassReverse / http://box.lan:{{ captive_portal_port }}/
|
||||||
ErrorLog /var/log/apache2/cp_error.log
|
ErrorLog /var/log/apache2/cp_error.log
|
||||||
WSGIScriptAlias / /opt/iiab/captive-portal/capture-wsgi.py
|
WSGIScriptAlias / /opt/iiab/captive-portal/capture-wsgi.py
|
||||||
#WSGIScriptAlias / /opt/iiab/captive-portal/test.py
|
#WSGIScriptAlias / /opt/iiab/captive-portal/test.py
|
||||||
|
|
|
@ -78,7 +78,7 @@ sys.stdout = sl
|
||||||
stderr_logger = logging.getLogger('STDERR')
|
stderr_logger = logging.getLogger('STDERR')
|
||||||
sl = StreamToLogger(stderr_logger, logging.ERROR)
|
sl = StreamToLogger(stderr_logger, logging.ERROR)
|
||||||
sys.stderr = sl
|
sys.stderr = sl
|
||||||
PORT=9090
|
PORT={{ captive_portal_port }}
|
||||||
|
|
||||||
|
|
||||||
# Define globals
|
# Define globals
|
||||||
|
|
Loading…
Reference in a new issue