NGINX - 403 запрещено - не может обслуживать статический файл из каталога как пользователь root
Запуск Centos7. У меня проблема с подачей статического html-файла из подкаталога. Я установил все права доступа root и установил пользователя root в файле nginx.conf. Я включил мой файл конфигурации и список разрешений для каталога, из которого я пытаюсь обслуживать html-файл. Путь и файл, из которого я пытаюсь служить, это / home / colin /
nginx.conf
user root;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
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 ipv6only=on default_server;
server_name _;
root /home/colin;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location /cap {
autoindex on;
try_files test.html /test.html;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
РАЗРЕШЕНИЯ
f: /home/colin/test.html
drwxrwxrwx root root /
drwxr-xr-x root root home
drwxr-xr-x root root colin
-rwxr-xr-x root root test.html
Я перепробовал несколько конфигураций с разными настройками разрешений, используя псевдонимы и разные подкаталоги с одним и тем же корневым разрешением - и возникает та же проблема: 403 Запрещено. Я что-то упускаю здесь очевидное? Любая помощь будет принята с благодарностью