-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.conf
More file actions
236 lines (217 loc) · 9.39 KB
/
index.conf
File metadata and controls
236 lines (217 loc) · 9.39 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{# This configuration is based on wordpress_composer.conf and any changes to
# this file should be duplicated there, as appropriate.
-#}
# vim: ft=apache:
<VirtualHost *:443>
ServerName {{ SERVER_NAME }}
ErrorLog ${APACHE_LOG_DIR}/{{ SERVER_NAME }}_error.log
CustomLog ${APACHE_LOG_DIR}/{{ SERVER_NAME }}_access.log combined
SSLEngine on
SSLCertificateFile {{ LE_CERT_PATH }}/fullchain.pem
SSLCertificateKeyFile {{ LE_CERT_PATH }}/privkey.pem
RewriteEngine On
# Ensure plaintext files are served using UTF-8
AddCharset utf-8 .txt
# Log Rewrite actions (use trace1 - trace8 for detailed logging)
LogLevel rewrite:warn
###########################################################################
# CC Legal Tools
# Directory Aliases
Alias /status /var/www/git/cc-legal-tools-data/docs/status
Alias /rdf /var/www/git/cc-legal-tools-data/docs/rdf
Alias /publicdomain /var/www/git/cc-legal-tools-data/docs/publicdomain
Alias /licenses /var/www/git/cc-legal-tools-data/docs/licenses
Alias /cc-legal-tools /var/www/git/cc-legal-tools-data/docs/cc-legal-tools
# File Aliases
Alias /schema.rdf /var/www/git/cc-legal-tools-data/docs/rdf/schema.rdf
Alias /ns.html /var/www/git/cc-legal-tools-data/docs/rdf/ns.html
Alias /ns /var/www/git/cc-legal-tools-data/docs/rdf/ns.html
# Ensure lowercase
RewriteMap lowercase int:tolower
RewriteCond %{REQUEST_URI} ^/(licenses|publicdomain) [NC]
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule ^(.*)$ ${lowercase:$1} [R=301,L]
<Directory /var/www/git/cc-legal-tools-data/docs>
# Disable .htaccess (for security and performance)
AllowOverride None
# Enable CORS (cross-origin resource sharing)
Header set Access-Control-Allow-Origin "*"
# Correct mimetype for .../rdf files
RewriteRule /rdf$ - [T=application/rdf+xml]
# Language redirects
Include /var/www/git/cc-legal-tools-data/config/language-redirects
# Also serve HTML files without .html extension
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule !.*\.html$ %{REQUEST_FILENAME}.html [L]
# Redirect .../index.php to .../
RewriteCond %{REQUEST_FILENAME} "index\.php$" [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*/)index\.php$ $1 [L,NC,R=301]
# Deny access to PHP files (content should be only static files)
RewriteRule .*\.php$ "-" [F,L]
</Directory>
# Legacy/compatibilty redirects
RedirectPermanent /licenses/work-html-popup /choose
RedirectPermanent /licences /licenses
# Redirect legacy public domain URLs
RedirectPermanent /licenses/publicdomain/ /publicdomain/
RedirectPermanent /licenses/mark/1.0 /publicdomain/mark/1.0
# Licenses 1.0 has reverse ordered components
RedirectPermanent /licenses/nc-nd/1.0 /licenses/nd-nc/1.0
RedirectPermanent /licenses/by-nc-nd/1.0 /licenses/by-nd-nc/1.0
# Licenses 2.1 only includes ports
RedirectMatch 301 /licenses/([^/]+)/2.1/(lega.*) /licenses/$1/2.0/$2
RedirectMatch 301 /licenses/([^/]+)/2.1/(deed.*) /licenses/$1/2.0/$2
###########################################################################
# Chooser
# Alias /choose /var/www/git/chooser/docs
# <Directory /var/www/git/chooser/docs>
# # Disable .htaccess (for security and performance)
# AllowOverride None
# # Redirect .../index.php to .../
# RewriteCond %{REQUEST_FILENAME} "index\.php$" [NC]
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteRule (.*/)index\.php$ $1 [L,NC,R=301]
# # Deny access to PHP files (content should be only static files)
# RewriteRule .*\.php "-" [F,L]
# </Directory>
RedirectTemp /choose/mark/ https://wiki.creativecommons.org/wiki/PDM_FAQ
RedirectTemp /choose/mark https://wiki.creativecommons.org/wiki/PDM_FAQ
###########################################################################
# FAQ
Alias /faq /var/www/git/faq/faq
<Directory /var/www/git/faq/faq>
# Disable .htaccess (for security and performance)
AllowOverride None
# Redirect .../index.php to .../
RewriteCond %{REQUEST_FILENAME} "index\.php$" [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*/)index\.php$ $1 [L,NC,R=301]
# Deny access to PHP files (content should be only static files)
RewriteRule .*\.php "-" [F,L]
</Directory>
###########################################################################
# Platform Toolkit
Alias /platform/toolkit /var/www/git/mp/docs
<Directory /var/www/git/mp/docs>
# Disable .htaccess (for security and performance)
AllowOverride None
# Redirect .../index.php to .../
RewriteCond %{REQUEST_FILENAME} "index\.php$" [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*/)index\.php$ $1 [L,NC,R=301]
# Deny access to PHP files (content should be only static files)
RewriteRule .*\.php "-" [F,L]
</Directory>
###########################################################################
# WordPress/Default
DocumentRoot {{ DOCROOT }}
<Directory {{ DOCROOT }}>
{%- if salt.pillar.get("apache2:stage_username", false) and salt.pillar.get("apache2:stage_password", false) %}
AuthType Basic
AuthName "Restricted Content"
AuthUserFile /var/www/htpasswd
Require valid-user
{%- endif %}
AllowOverride AuthConfig Limit Options FileInfo
Options +FollowSymLinks -Indexes
<Files .env>
Require all denied
</Files>
</Directory>
<Directory {{ DOCROOT }}/backup>
AllowOverride None
Require all denied
</Directory>
<Directory {{ DOCROOT }}/wp/wp-admin/includes>
AllowOverride None
Require all denied
</Directory>
<Directory {{ DOCROOT }}/wp/wp-includes/theme-compat>
AllowOverride None
Require all denied
</Directory>
<Directory {{ DOCROOT }}/wp-content/uploads>
AllowOverride None
<FilesMatch "[.]ph(?:p\d?|t|tml)$">
Require all denied
</FilesMatch>
</Directory>
<FilesMatch "^[.]?wp-config[.]php">
Require all denied
</FilesMatch>
<Files "wp-config-sample.php">
Require all denied
</Files>
# Default Index
RewriteRule ^(/)?$ /wp/index.php [L]
# WP-API
RewriteRule ^(/wp-json/.*)$ /wp/index.php$1 [L]
# Legacy theme (hotlinked image that gives CC exposure)
RedirectPermanent /wp-content/themes/cc/images/cc.logo.white.svg https://ccstatic.org/cc2016www/images/cc.logo.white.svg
# Permalinks (for dirs/files not found)
# https://codex.wordpress.org/Using_Permalinks
# Directory Conditions
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/wp
RewriteCond %{REQUEST_URI} !^/status
RewriteCond %{REQUEST_URI} !^/rdf(/|$)
RewriteCond %{REQUEST_URI} !^/publicdomain(/|$)
RewriteCond %{REQUEST_URI} !^/platform/toolkit(/|$)
RewriteCond %{REQUEST_URI} !^/licen[cs]es(/|$)
RewriteCond %{REQUEST_URI} !^/faq(/|$)
RewriteCond %{REQUEST_URI} !^/choose/mark(/|$)
RewriteCond %{REQUEST_URI} !^/cc-legal-tools(/|$)
# File Conditions
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/schema.rdf$
RewriteCond %{REQUEST_URI} !^/ns.html$
RewriteCond %{REQUEST_URI} !^/ns$
# Rule
RewriteRule . /wp/index.php [L]
# Serve non-/wp-content/ out of /wp/ (for dirs/files not found)
# https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
# Directory Conditions
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/wp/
RewriteCond %{REQUEST_URI} !^/wp-content/
RewriteCond %{REQUEST_URI} !^/status
RewriteCond %{REQUEST_URI} !^/rdf(/|$)
RewriteCond %{REQUEST_URI} !^/publicdomain(/|$)
RewriteCond %{REQUEST_URI} !^/platform/toolkit(/|$)
RewriteCond %{REQUEST_URI} !^/licen[cs]es(/|$)
RewriteCond %{REQUEST_URI} !^/faq(/|$)
RewriteCond %{REQUEST_URI} !^/choose/mark(/|$)
RewriteCond %{REQUEST_URI} !^/cc-legal-tools(/|$)
# File Conditions
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/schema.rdf$
RewriteCond %{REQUEST_URI} !^/ns.html$
RewriteCond %{REQUEST_URI} !^/ns$
# Rule
RewriteRule ^/(.*)$ /wp/$1
</VirtualHost>
<VirtualHost *:80>
ServerName ${HTTP_HOST}
ErrorLog ${APACHE_LOG_DIR}/{{ SERVER_NAME }}_error.log
CustomLog ${APACHE_LOG_DIR}/{{ SERVER_NAME }}_access.log combined
# Enable Let's Encrypt verification
Alias /.well-known/acme-challenge /var/www/html/.well-known/acme-challenge
<Directory /var/www/html/.well-known/acme-challenge>
Options None
AllowOverride None
ForceType text/plain
RedirectMatch 404 "^(?!/\.well-known/acme-challenge/[\w-]{43}$)"
</Directory>
# Enable WordPress migrations
Alias /cache-uploads {{ DOCROOT }}/cache-uploads
<Directory {{ DOCROOT }}/cache-uploads>
AllowOverride None
# Options default is FollowSymlinks
Require local
</Directory>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/cache-uploads [NC]
RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L]
</VirtualHost>