可以在Firewall rules里面添加一条Action为Allow规则, Field选IP(填你自己的IP)或者Path(科学上网的Path). 也可以在Tools里面的IP Access Rules添加一条你自己的IP选Whitelist. 还可以直接把settings里面的Security Level调成Essentially Off.
nginx server的root目录没有权限错误
SELinux 是一种安全增强系统,用于控制进程的访问权限,防止未经授权的访问。如果 SELinux 在系统上启用,则必须配置正确的 SELinux 安全上下文以允许 nginx 用户访问 /data/blog 目录及其子目录中的文件。
你可以执行以下命令来检查文件的 SELinux 安全上下文:
1 | ls -Z /data/blog |
如果文件的安全上下文中包含 httpd_sys_content_t,则表示该文件可以由 Web 服务器读取。否则,就需要手动更改文件的安全上下文。
你可以使用以下命令来为 /data/blog 目录及其子目录设置正确的 SELinux 安全上下文:
1 | chcon -Rv --type=httpd_sys_content_t /data/blog |
这条命令将为 /data/blog 目录及其子目录设置 SELinux 安全上下文类型为 httpd_sys_content_t,这将允许 Web 服务器读取该目录中的文件。
注意:这些命令需要使用 root 权限执行。
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment