Eu quero o meu nginx para os arquivos do servidor do meu diretório pessoal, mas continuo recebendo o erro 403 proibido.
nginx.conf
user http;
worker_processes 2;
error_log logs/error.log;
error_log logs/error.log notice;
error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#server_name_in_redirect off;
root /home/txx/http/www;
location / {
index index.php index.html index.htm;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php56-fpm/php-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
Eu tenho diretório / home / user / http / www e todas as subpastas configuradas como 775 com, e tudo pertence ao grupo http.
drwxrwxr-x 10 txx http 4096 20.04.2017 19:28 www/
Eu corri 'chmod 755 -R www / *' 'chmod 775 -R www'
O que poderia ser isso?