LINUX.ORG.RU
решено ФорумAdmin

Конфиг nginx.

 


0

1

Добрый вечер. Подскажите пожалуйста почему конфиг выдаёт 404, вместо index.html. До этого работало пока не начал настраивать HTTP/SSL. конфиг файл только один не считая директорий с ключами.

server
{
            listen   443;
            server_name mysite.com;
            keepalive_timeout   70;
            rewrite ^(.*) https://www.mysite.com$1 permanent;

                        access_log off;
                        error_log on;
                        root /home/mysite.com/public_html;
                        error_log /home/mysite.com/logs/mysite.error.log;
                        index index.php index.html index.htm;
            ssl on;
            ssl_certificate      /etc/nginx/ssl/cirrus
crt/mysite.com.crt;
            ssl_certificate_key  /etc/nginx/ssl/cirrus-crt/mysite.com.key;
            ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
            ssl_ciphers         HIGH:!aNULL:!MD5;
       }
       
server {
            listen   80;
            server_name www.mysite.com;
        access_log off;
        error_log on;
        root /home/mysite.com/public_html;
        error_log /home/mysite.com/logs/mysite.log;
        index index.php index.html index.htm;
}

Ответ на: комментарий от RaptorsWings

Rewrite https стоит с без www на с www, но https www не определен.

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.