The test with getenv(“PATH”) only returns an empty response
修改php-fpm中www.conf,将下面行的内容注释取消,重启php
;env[HOSTNAME] = $HOSTNAME
;env[PATH] = /usr/local/bin:/usr/bin:/bin
;env[TMP] = /tmp
;env[TMPDIR] = /tmp
;env[TEMP] = /tmp
nextcloud在nginx中的伪静态规则,在站点配置中添加一下内容:
location
~ ^/(data|config|\.ht|db_structure\.xml|README) {
deny all;
}
The “Strict-Transport-Security” HTTP header is not configured to least “15552000” seconds. For enhanced security we recommend enabling HSTS as described in our security tips.
在站点SSL配置文件添加一下内容(apache2: a2enmod headers)
NGINX:
add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
APACHE:
Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"