-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathappstore.include.conf
More file actions
40 lines (31 loc) · 944 Bytes
/
appstore.include.conf
File metadata and controls
40 lines (31 loc) · 944 Bytes
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
ServerAdmin root@localhost
ServerName localhost
ServerAlias localhost-dev
ErrorLog /var/www/appstore/logs/error_log
CustomLog /var/www/appstore/logs/access_log common
<Directory />
Require all granted
Allow from all
</Directory>
Alias /favicon.ico /var/www/html/misc/favicon.ico
Alias /google_oauth2_logo.png /var/www/html/misc/google_oauth2_logo.png
<Directory /var/www/html/misc>
Order allow,deny
Allow from all
</Directory>
Alias /static /var/www/html/static
<Directory /var/www/html/static>
Order allow,deny
Allow from all
</Directory>
Alias /media /var/www/html/media
<Directory /var/www/html/media>
Order allow,deny
Allow from all
</Directory>
# Allow access to the letsencrypt ACME challenge
Alias /.well-known/ /var/www/html/.well-known/
<Directory /var/www/html/.well-known/>
Require all granted
</Directory>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet