문제

user git;

I think the user means you run the server with the account.

Can I use multiple users in nginx conf?

If one user has permission issue, then nginx will try another account to access the file?

# user www-data git gitlab poc;
user git;
worker_processes 4;
pid /run/nginx.pid;
도움이 되었습니까?

해결책

I think the user means you run the server with the account.

Correct; the nginx process(es) are run as that user.

Can I use multiple users in nginx conf?

No.

If one user has permission issue, then nginx will try another account to access the file?

No. Ensure the user whom you have set to run the server as has all of the needed permissions.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top