forked from spiegelonline/sponionpi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
apache_sponionpi.conf
executable file
·39 lines (34 loc) · 1.04 KB
/
apache_sponionpi.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
DirectoryIndex index.html index.htm index.php index.pl
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
AuthType Basic
AuthName "Bitte Login-Daten eingeben. Standardwerte sind <WLAN-NAME> als Benutzer und <WPA-PASSWORT> als Passwort"
AuthBasicProvider file
AuthUserFile /var/www/login
#username is wlan-ssid of sponionpi
#change of ssid also updates apache authorization
Require user SPONionPi-Tor
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>