Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
20 righe
483 B
20 righe
483 B
<VirtualHost *:80> |
|
ServerAdmin ${APACHE_SERVER_ADMIN} |
|
ServerName ${SERVER_NAME} |
|
|
|
DocumentRoot /var/www/certbot |
|
|
|
RewriteEngine On |
|
|
|
RewriteRule ^/$ https://%{HTTP_HOST}/ [L,R=301] |
|
|
|
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f |
|
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d |
|
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
|
|
|
<Directory "/var/www/certbot"> |
|
Require all granted |
|
AllowOverride All |
|
Options -Indexes |
|
</Directory> |
|
</VirtualHost>
|
|
|