1. Здесь находится дерево папки nginx.И / home / git / blog / hexo - это место, где я помещаю файлы моего блога
├── conf.d
├── fastcgi.conf
├── fastcgi_params
├── koi-utf
├── koi-win
├── mime.types
├── nginx.conf
├── proxy_params
├── scgi_params
├── sites-available
│ └── default
├── sites-enabled
│ └── default -> /etc/nginx/sites-available/default
├── snippets
│ ├── fastcgi-php.conf
│ └── snakeoil.conf
├── uwsgi_params
└── win-utf
2.пользователя процесса "nginx", который показывает, что пользователь - git.
root@ubuntu:/etc/nginx# ps aux | grep nginx
root 14931 0.0 0.7 125108 3968 ? Ss 06:25 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
git 15108 0.0 0.6 125456 3144 ? S 07:38 0:00 nginx: worker process
root 15361 0.0 0.1 12944 1016 pts/0 S+ 07:44 0:00 grep --color=auto ngin
3. состояние nginx, которое показывает, что все в порядке
root@ubuntu:/etc/nginx# systemctl status nginx
● nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Sun 2019-02-10 06:25:33 EST; 1h 20min ago
Process: 14918 ExecStop=/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid (code=exited, status=0/SUCCESS)
Process: 14927 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 14924 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Main PID: 14931 (nginx)
Tasks: 2
Memory: 1.9M
CPU: 70ms
CGroup: /system.slice/nginx.service
├─14931 nginx: master process /usr/sbin/nginx -g daemon on; master_process on
└─15108 nginx: worker process
ubuntu systemd[1]: Starting A high performance web server and a reverse proxy server...
ubuntu systemd[1]: nginx.service: Failed to read PID from file /run/nginx.pid: Invalid argument
ubuntu systemd[1]: Started A high performance web server and a reverse proxy server.
4. журнал ошибок niginx:
directory index of "/home/git/blog/hexo/" is forbidden, client: ip, server: ip, request: "GET / HTTP/1.1", host: "myhost.com"
5. подробности nginx.conf
root@ubuntu:/etc/nginx# cat nginx.conf
user git;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
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;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
6. детали сайта с поддержкой / по умолчанию
server {
listen 80 default_server;
listen [::]:80 default_server;
root /home/git/blog/hexo;
index index.html index.htm index.nginx-debian.html;
server_name ip of myhost.com;
location / {
try_files $uri $uri/ =404;
}
}
background:
Я использую hexo и nginx для настройки блога, и когда я запускаю "hexo d -g" на локальном компьютере (на linux), он работает нормально.Но myhost.com показывает 403 запрещенных.
Я попробовал решения, предоставленные другими, на stackoverflow, но все они не сработали для меня.Не могли бы вы дать мне несколько советов по этому поводу?Спасибо тебе!