We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92805b0 commit bb68f9aCopy full SHA for bb68f9a
1 file changed
docker/solid.conf
@@ -17,6 +17,25 @@
17
RewriteRule ^(.+)$ index.php [QSA,L]
18
</Directory>
19
</VirtualHost>
20
+<VirtualHost *:443>
21
+ ServerName storage.solid.local
22
+ DocumentRoot /opt/solid/www/storage
23
+
24
+ SSLEngine on
25
+ SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
26
+ SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
27
28
+ ErrorLog ${APACHE_LOG_DIR}/error.log
29
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
30
+ <Directory />
31
+ Require all granted
32
+ RewriteEngine On
33
+ RewriteBase /
34
+ RewriteCond %{REQUEST_FILENAME} !-d
35
+ RewriteCond %{REQUEST_FILENAME} !-f
36
+ RewriteRule ^(.+)$ index.php [QSA,L]
37
+ </Directory>
38
+</VirtualHost>
39
<VirtualHost *:443>
40
ServerName identity.solid.local
41
ServerAlias *.solid.local
0 commit comments