- 2017/05/28
- |
- 技术随笔
- |
- 0 Replies
打开网站的 .conf 文件 server 段
#error_page 404 /404.html;
#error_page 502 /502.html;
# 添加下面一段
location ~ [^/]\.php(/?.*)$ {
fastcgi_split_path_info ^(.+?\.php)(/.+)$;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ [^/]\.p...
- 2017/05/25
- |
- 技术随笔
- |
- 0 Replies
正确做法:Typecho在Tengine下pathinfo的问题(/index.php/xxx/)
下方做法会导致此安全隐患:Nginx + PHP CGI的一个可能的安全漏洞
修改PHP配置
vim /usr/local/php/etc/php.ini
cgi.fix_pathinfo=1
重启服务
service php-fpm restart
service nginx restart
https://askubuntu.com/questions/164627/nginx-php-fpm-access-denied-error
- 2017/05/07
- |
- 技术随笔
- |
- 0 Replies
授权用户远程访问数据库
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
授权用户远程访问数据库(带管理权限)
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'WITH GRANT OPTION;
FLUSH PRIVILEGES;
取消授权
REVOKE ALL ON *.* FROM 'root'@'%';
FLUSH PRIVILEGES;