owncloud 服务器访问可以通过 HTTP 进行,但通过 HTTPS 访问则失败

owncloud 服务器访问可以通过 HTTP 进行,但通过 HTTPS 访问则失败

按照一些教程并经过多次试验和错误,我已经能够在我的树莓派上设置一个 owncloud 服务器。

如果我通过 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
}

相关内容