0

我实际上遇到了 Nextcloud 14 的问题(全新安装

有一些关于您的设置的警告。

不再支持使用内置的 php 邮件程序。请更新>您的电子邮件服务器设置↗。

“X-XSS-Protection”HTTP 标头未设置为“1; mode=block”。这是一个潜在的安全或隐私风险,因为建议相应地调整此设置。

“X-Content-Type-Options”HTTP 标头未设置为“nosniff”。这是一个潜在的安全或隐私风险,因为建议相应地调整此设置。

“Referrer-Policy”HTTP 标头未设置为“no-referrer”、“no-referrer-when-downgrade”、“strict-origin”或“strict-origin-when-cross-origin”。这可能会泄露引荐来源信息。请参阅 W3C 建议 ↗。

例子

就像您在 nextcloud 上面看到的那样,明确地说我没有正确配置此标头:

但是在我的 httpd.conf 中(我使用 Arch BTW <3):

Header always set Content-Security-Policy "upgrade-insecure-requests"
Header always set Referrer-Policy "same-origin"
Header always set X-Frame-Options "SAMEORIGIN"
Header always set X-XSS-Protection "1; mode=block"
Header always set X-content-Type-Options "nosniff"
Header always set Strict-Transport-Security "max-age=15768000; includeSubDomains; preload"

我不明白为什么它不起作用,我什至尝试查看使用了哪个标头以及使用了此标头:

Request URL: https://cloud.schmitt-etienne.fr/index.php/settings/admin/overview
Request Method: GET
Status Code: 200 
Remote Address: [2a01:e34:eeab:eb60:ffff:ffff:ffff:ffff]:443
Referrer Policy: no-referrer
cache-control: no-cache, no-store, must-revalidate
content-length: 27725
content-security-policy: upgrade-insecure-requests
content-type: text/html; charset=UTF-8
date: Wed, 12 Sep 2018 18:22:45 GMT
expires: Thu, 19 Nov 1981 08:52:00 GMT
pragma: no-cache
referrer-policy: same-origin
server: Apache
status: 200
strict-transport-security: max-age=15768000; includeSubDomains; preload
x-content-type-options: nosniff
x-content-type-options: nosniff
x-download-options: noopen
x-frame-options: SAMEORIGIN
x-permitted-cross-domain-policies: none
x-powered-by: PHP/7.2.10
x-robots-tag: none
x-xss-protection: 1; mode=block
x-xss-protection: 1; mode=block
:authority: cloud.schmitt-etienne.fr
:method: GET
:path: /index.php/settings/admin/overview
:scheme: https
accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
accept-encoding: gzip, deflate, br
accept-language: fr-FR,fr;q=0.9,en-US;q=0.8,en;q=0.7
cache-control: max-age=0
cookie:
upgrade-insecure-requests: 1

如果你想看看自己,你可以自己去看看我的网站:

如果我错过了任何我错过的东西,我很高兴听到任何评论!

祝你今天过得愉快 :)

4

1 回答 1

2

我刚刚发现 nextcloud 包含一个 .htaccess,他设置了自己的标头,因此标头被发送了两次,这就是原因:)

永远不要停止尝试和学习!

于 2018-09-13T08:54:51.337 回答