技术解析

搭建了 LNMP 环境,但是访问一直 403 找不到原因所在了 有大神知道原因吗
0
2021-06-18 19:47:48
idczone
都是 YUM 安装的 NGINX PHP MYSQL 都配置好了 nginx 和 php 都是 root 用户运行的 目录权限也都有 777 了
一点链接就会 403 下面是网站 http://47.244.220.209
下面附上 nginx.conf 配置
user root;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
worker_connections 1024;
}

http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log /var/log/nginx/access.log main;

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;

include /etc/nginx/mime.types;
default_type application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
index index.html index.htm index.php;
root /usr/share/nginx/html;

# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;

location / {
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
访问了一下,没问题啊

数据库密码看看对了没有

提示 404 啊

访问了下 没问题啊

随便点个链接就 404

404 是没有生成静态页面吧。

看看 rewrite 规则吧,URL 明显有问题

伪静态( url 美化)没做吧
在 server 节点上加上
```
location / {
try_files $uri $uri/ /index.php?$query_string;
}
```
试一下。
上面那个是 laravel 的规则,不过应该也可以用的。仔细看一下 typecho 的部署文档,应该有提到的。

OK 了 感谢。是伪静态没做 谢谢 和数据库没关系 要数据库有问题 在线安装的时候就报错了

解决了的话,那么可以发个 Typecho 主题推荐了 https://blog.luhe.xyz/archives/44/

哈哈 我用的就是友人的

Typecho 的文档多年未更新,最后更新时间是 2013 年了 http://docs.typecho.org/faq
而且还犯了一个 nginx 常见错误——用 if -e 和 rewrite 而不用 try_files。
try_files 理论上性能比 rewrite 更好的,因为不需要进行正则匹配。
对于“如果文件不存在,则请求 /index.php”这种用途应该使用 try_files。
rewrite 则应该用于复杂的路径处理,比如说把 /a/b.html 映射到 /index.php?x=a&y=b 这种情况。

777 一看就小白

数据地带为您的网站提供全球顶级IDC资源
在线咨询
专属客服