2018-11-27 19:11:01 +00:00
|
|
|
<VirtualHost _default_:80>
|
2018-11-27 16:00:52 +00:00
|
|
|
ErrorLog /var/log/apache2/error.log
|
|
|
|
CustomLog /var/log/apache2/access.log combined
|
2018-12-05 21:03:12 +00:00
|
|
|
<Directory /library/www/html>
|
2018-11-27 16:00:52 +00:00
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
AllowOverride None
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
|
|
|
add in template dir
rebase bassed upon copy in
cut out obvious dead code
working on put-204
make users a sqlite db
sqlite db has users, and agent info
android timeouts not yet working
android 5 and 6 both work. lost mac
return to a working version for the MAC. Missing the splash
android,mac,windows all appear to work
sqlite get status of execute row == Null
initialize lasttimestamp with ajax call when home is triggered
remove commented code, move towards logging vs print statements
add logging with the -l flag
no changes to default_vars.yml
drop iptables captive portal stuff not using port 8090, and dnsmasq
missed deleting trap_enabled
fixes for 6.7 defaults
add in template dir
rebase bassed upon copy in
cut out obvious dead code
working on put-204
make users a sqlite db
sqlite db has users, and agent info
android timeouts not yet working
android 5 and 6 both work. lost mac
return to a working version for the MAC. Missing the splash
android,mac,windows all appear to work
sqlite get status of execute row == Null
initialize lasttimestamp with ajax call when home is triggered
remove commented code, move towards logging vs print statements
drop iptables captive portal stuff not using port 8090, and dnsmasq
missed deleting trap_enabled
fixes for 6.7 defaults
dispense with apache logs for captive portal, use the rotating portal.log instead
bring in clean defaults and py
Squash debugging details
remove backup file
still cannot dispense with cna on iphone. mac escape from cna broke with these changes
captive comes after iiab in apache config
one filename wrong
logging used for debug, lost mac escape from cna
typos
got mac/iphone full browser back
remove dead code
python was not creating db, or putting ip when first encountered
2018-08-24 00:26:20 +00:00
|
|
|
<VirtualHost *:80>
|
|
|
|
# The ServerName directive sets the request scheme, hostname and port that
|
|
|
|
# the server uses to identify itself. This is used when creating
|
|
|
|
# redirection URLs. In the context of virtual hosts, the ServerName
|
|
|
|
# specifies what hostname must appear in the request's Host: header to
|
|
|
|
# match this virtual host. For the default virtual host (this file) this
|
|
|
|
# value is not decisive as it is used as a last resort host regardless.
|
|
|
|
# However, you must set it for any further virtual host explicitly.
|
|
|
|
ServerName iiab.io
|
|
|
|
Include /etc/apache2/capture
|
2018-12-05 21:03:12 +00:00
|
|
|
# ProxyPreserveHost On
|
|
|
|
# ProxyPass / http://box.lan:9090/
|
|
|
|
# ProxyPassReverse / http://box.lan:9090/
|
|
|
|
ErrorLog /var/log/apache2/cp_error.log
|
|
|
|
WSGIScriptAlias / /opt/iiab/captive-portal/capture-wsgi.py
|
|
|
|
#WSGIScriptAlias / /opt/iiab/captive-portal/test.py
|
|
|
|
WSGIScriptReloading On
|
|
|
|
<Directory /opt/iiab/captive-portal>
|
|
|
|
AllowOverride None
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
<VirtualHost 127.0.0.1:80>
|
|
|
|
ErrorLog /var/log/apache2/error.log
|
|
|
|
CustomLog /var/log/apache2/access.log combined
|
|
|
|
<Directory /library/www/html>
|
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
AllowOverride None
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
add in template dir
rebase bassed upon copy in
cut out obvious dead code
working on put-204
make users a sqlite db
sqlite db has users, and agent info
android timeouts not yet working
android 5 and 6 both work. lost mac
return to a working version for the MAC. Missing the splash
android,mac,windows all appear to work
sqlite get status of execute row == Null
initialize lasttimestamp with ajax call when home is triggered
remove commented code, move towards logging vs print statements
add logging with the -l flag
no changes to default_vars.yml
drop iptables captive portal stuff not using port 8090, and dnsmasq
missed deleting trap_enabled
fixes for 6.7 defaults
add in template dir
rebase bassed upon copy in
cut out obvious dead code
working on put-204
make users a sqlite db
sqlite db has users, and agent info
android timeouts not yet working
android 5 and 6 both work. lost mac
return to a working version for the MAC. Missing the splash
android,mac,windows all appear to work
sqlite get status of execute row == Null
initialize lasttimestamp with ajax call when home is triggered
remove commented code, move towards logging vs print statements
drop iptables captive portal stuff not using port 8090, and dnsmasq
missed deleting trap_enabled
fixes for 6.7 defaults
dispense with apache logs for captive portal, use the rotating portal.log instead
bring in clean defaults and py
Squash debugging details
remove backup file
still cannot dispense with cna on iphone. mac escape from cna broke with these changes
captive comes after iiab in apache config
one filename wrong
logging used for debug, lost mac escape from cna
typos
got mac/iphone full browser back
remove dead code
python was not creating db, or putting ip when first encountered
2018-08-24 00:26:20 +00:00
|
|
|
</VirtualHost>
|