Eu tenho a seguinte configuração para nginx
e uwsgi
para exibir uma instância cgit
.
# cat /etc/uwsgi.d/cgit.ini
[uwsgi]
plugins = cgi
uid = nginx
gid = nginx
socket = /srv/http/cgit/cgit.sock
procname-master = uwsgi cgit
processes = 1
threads = 2
cgi = /srv/http/cgit/htdocs/cgit.cgi
logto = /srv/http/cgit/logs/uwsgi.log
A instância do uwsgi funciona (nada de estranho no arquivo de configuração) e as permissões do socket parecem corretas, em que nginx
é o proprietário. Eu verifiquei duas vezes, que o usuário nginx
pode acessar o diretório e ver o soquete.
# ls -la /srv/http/cgit
total 20
drwxr-xr-x. 5 nginx nginx 4096 Oct 29 14:09 .
drwxr-xr-x. 3 nginx nginx 4096 Oct 29 12:59 ..
drwxrwxr-x. 6 nginx nginx 4096 Oct 29 14:06 build
srwxr-xr-x. 1 nginx nginx 0 Oct 29 14:28 cgit.sock
drwxr-xr-x. 2 nginx nginx 4096 Oct 29 14:06 htdocs
drwxr-xr-x. 2 nginx nginx 4096 Oct 29 13:54 logs
Minha configuração nginx diz:
user nginx;
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 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
location /cgit-web {
rewrite ^/cgit-web(/.*)$ $1 break;
root /srv/http/cgit/build;
}
location /cgit {
try_files $uri @cgit;
}
location @cgit {
gzip off;
include uwsgi_params;
uwsgi_modifier1 9;
uwsgi_pass unix:/srv/http/cgit/cgit.sock;
}
}
}
O usuário é nginx
e o caminho para o arquivo de soquete também está correto. Agora, ao tentar acessar /cgit
, eu encontro a seguinte mensagem no log de erros do nginx:
*6 connect() to unix:/srv/http/cgit/cgit.sock failed (13: Permission denied) while connecting to upstream, client: x.x.x.x, server: _, request: "GET /cgit HTTP/1.1", upstream: "uwsgi://unix:/srv/http/cgit/cgit.sock:", host: "xxx"
Quais permissões eu errei? Por que o nginx
não pode acessar o soquete?
O problema foi com o SELinux. Obrigada!