You are not logged in.
Pages: 1
Hi,
inside the http block of /etc/nginx/nginx.conf I have the following:
server {
listen 8000;
server_name localhost;
location / {
root /home/user/HomePage;
index index.html;
}
}
The permissions to the HomePage directory are: rwxr-xr-x.
After restarting nginx, when I go to localhost on my browser I get the error: 403 Forbidden
With or without the "autoindex on;" option I get the same result.
Can anyone help?
Thanks
Last edited by zuntik (2017-08-22 19:55:45)
Offline
Offline
Nice: the permissions set on /home/user are 700.
I can change them to 755, but is there a cleverer way to give nginx acess without giving "others" full read access? (By adding user to some group for example)
Thanks
Offline
Don't use your home directory, use /var/www instead and give your user write permissions.
Offline
Good enough, thanks.
Offline
You can use a bind mount to /var/www if moving the data is not what you want.
Offline
Mandatory suggestion: https://wiki.archlinux.org/index.php/Systemd/User (i.e. run nginx as your user to get rid of permission problems and the need to edit configuration files as root or manage services as root).
Offline
Thanks 2ion,
mount --bind /home/user/HomePage /var/www
did the trick.
Offline
Any tips on how to do that, ayekat?
Offline
Well, uhm... read that article?
That being said, if you want your enabled services to start without you logging in, you may want to enable lingering for your user (see the loginctl man page for that). And when writing a service, install them to default.target (e.g. when you copy a system service, it usually installs to multi-user.target). But I'm (almost) sure that should be covered by that article as well. edit Yup, it is.
Last edited by ayekat (2017-08-24 18:38:12)
Offline
Pages: 1