2

После нескольких уроков и множества проб и ошибок я смог настроить сервер owncloud на своем Raspberry Pi.

Все работает нормально, если я подключаюсь по HTTP, но я получаю ERR_CONNECTION_RESET когда пытаюсь подключиться по HTTPS. Ничего не появляется в журнале nginx, связанных с этой ошибкой.

Я искал 2 дня, и я не могу найти ничего, что подходит моей проблеме. Надеюсь, что кто-то здесь может подтолкнуть меня в правильном направлении.

Вот моя текущая конфигурация сайта:

server {
listen 80;
listen [::]:80;
root /var/www/html/owncloud;
index  index.php index.html index.htm;
server_name  xxxx.no-ip.org/;
location / {
    rewrite ^ /index.php$uri;
}
location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
    return 404;
}
location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
    return 404;
}
location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/) {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    fastcgi_intercept_errors on;
    fastcgi_request_buffering off;
}
location ~ ^/(?:updater|ocs-provider)(?:$|/) {
    try_files $uri $uri/ =404;
    index index.php;
}
location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
    try_files $uri /index.php$uri$is_args$args;
    access_log off;
}


listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/xxxx.no-ip.org/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/xxxx.no-ip.org/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

# Redirect non-https traffic to https
# if ($scheme != "https") {
#     return 301 https://$host$request_uri;
# } # managed by Certbot
}

0