443 только для Алисы: различия между версиями
Материал из MajorDoMo инфо
Mixman (обсуждение | вклад) мНет описания правки |
Mixman (обсуждение | вклад) мНет описания правки |
||
(не показаны 2 промежуточные версии этого же участника) | |||
Строка 1: | Строка 1: | ||
[[Category:Юзеркейсы]] | |||
Правим конфиг апача | |||
<pre> /etc/apache2/sites-enabled/000-default-le-ssl.conf </pre> | |||
<pre> | <pre> | ||
<IfModule mod_ssl.c> | <IfModule mod_ssl.c> | ||
Строка 43: | Строка 46: | ||
</Files> | </Files> | ||
<Files "smarthome.php"> | <Files "smarthome.php"> | ||
Allow from all | |||
</Files> | |||
<Files "server.php"> | |||
Allow from all | Allow from all | ||
</Files> | </Files> |
Текущая версия от 00:31, 17 декабря 2020
Правим конфиг апача
/etc/apache2/sites-enabled/000-default-le-ssl.conf
<IfModule mod_ssl.c> <VirtualHost *:443> DocumentRoot /var/www/html <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /var/www/html> Options Indexes FollowSymLinks MultiViews AllowOverride All # Order allow,deny # allow from all Order deny,allow Deny from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> <Files ~ “^\.ht”> Order allow,deny Deny from all </Files> <Directory "/var/www/html/modules/yandexhome/"> Order allow,deny Deny from all <Files "authorize.php"> Allow from all </Files> <Files "token.php"> Allow from all </Files> <Files "smarthome.php"> Allow from all </Files> <Files "server.php"> Allow from all </Files> </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> </IfModule>