Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

By tatrarendelo
Hi,
I am setting up a server, the plan is to host multiple static sites via NGINX.
The first one I am trying to set up, is iuorvosszakerto.hu I have already configured the DNS, and have updated the domain, name servers are correct. In the control panel the domain points to the droplet.
I have set up the NGINX config as follows:
server { listen 80; ## listen for ipv4; this line is default and $ #listen [::]:80 default ipv6only=on; ## listen for ipv6
root /var/www/iuorvosszakerto.hu/public_html;
index index.html index.htm;
server_name iuorvosszakerto.hu;
location / {
try_files $uri $uri/ /index.html;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
}
Have also created the symbolic link to the config in /etc/nginx/sites-enabled
The file /var/www/iuorvosszakerto.hu/public_html/index.html exists and is a valid HTML file. The chmod for /var/www is 755.
Have restarted NGINX several times, without any luck.
However, when I open up iuovrosszakerto.hu in a browser, I get 403 - why? The logs in /var/log/nginx are empty.
Looking forward for any answers/suggestions.