-
Notifications
You must be signed in to change notification settings - Fork 15
/
proxy-config.conf
46 lines (32 loc) · 999 Bytes
/
proxy-config.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
40
41
42
43
44
45
46
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName localhost
ServerAlias yourserver.com
DocumentRoot /var/www/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory "/var/www/adminer/>
AuthType Basic
AuthName "Adminer"
AuthUserFile /config/.htpasswd
Require valid-user
AllowOverride All
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
#<VirtualHost *:443>
#ServerName www.example.com
#ServerAdmin webmaster@localhost
#DocumentRoot /var/www
#ErrorLog ${APACHE_LOG_DIR}/error.log
#CustomLog ${APACHE_LOG_DIR}/access.log combined
#SSLEngine on
# SSLProtocol All -SSLv2 -SSLv3
# SSLCipherSuite AES128+EECDH:AES128+EDH
# SSLCertificateFile /config/ssl.crt
# SSLCertificateKeyFile /config/decryptedssl.key
# SSLCertificateChainFile /config/sub.class1.server.ca.pem
#</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet