forked from kwk/docker-registry-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache-site.conf
70 lines (57 loc) · 1.89 KB
/
apache-site.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<VirtualHost *:*>
DocumentRoot /var/www/html
ServerName localhost
# When FRONTEND_BROWSE_ONLY_MODE is defined in envvars
# we will only allow GET requests to the frontend. All other
# HTTP requests will be aborted with a HTTP 403 Error.
<IfDefine FRONTEND_BROWSE_ONLY_MODE>
<Location />
<LimitExcept GET>
Order Allow,Deny
Deny From All
</LimitExcept>
</Location>
</IfDefine>
# Proxy all docker REST API registry
# requests to the docker registry server.
<IfModule ssl_module>
SSLProxyEngine on
# SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
</IfModule>
ProxyPreserveHost On
ProxyPass /v1/ ${DOCKER_REGISTRY_SCHEME}://${DOCKER_REGISTRY_HOST}:${DOCKER_REGISTRY_PORT}/v1/
ProxyPassReverse /v1/ ${DOCKER_REGISTRY_SCHEME}://${DOCKER_REGISTRY_HOST}:${DOCKER_REGISTRY_PORT}/v1/
# Enable Kerberos authentication if requested
# NOTE: The module will be loaded or unloaded by the /root/start-apache.sh script.
# And the variables are also set by the script.
<IfModule mod_auth_kerb.c>
<Location "/">
Options FollowSymLinks Indexes
AuthType Kerberos
AuthName "${AUTH_NAME}"
KrbAuthRealms ${AUTH_KRB_REALMS}
KrbServiceName ${AUTH_KRB_SERVICE_NAME}
Krb5Keytab ${AUTH_KRB5_KEYTAB}
KrbMethodNegotiate on
KrbMethodK5Passwd on
Require valid-user
</Location>
</IfModule>
# Enable SSL encryption if requested
# NOTE: The module will be loaded or unloaded by the /root/start-apache.sh script.
<IfModule ssl_module>
<IfDefine USE_SSL>
ServerName localhost
SSLEngine on
SSLCertificateFile /etc/apache2/server.crt
SSLCertificateKeyFile /etc/apache2/server.key
</IfDefine>
</IfModule>
# Allow ping and users to run unauthenticated.
<Location /v1/_ping>
Satisfy any
Allow from all
</Location>
</VirtualHost>