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.

Hello guys.
I configured my Nginx to run passenger with Nginx module. My PHP applications work normally.
In my nginx.conf file I put the following:
server { listen 80; server_name mywebsite.com www.mywebsite.com; root /var/ www/mywebsite.com/current/public; passenger_enabled on; }
In the public folder I ran “chmod-R 755 public” and then immediately “chown www-data: www-data public.”
'm Having 403 error.
“403 Forbidden nginx/1.6.0”
In my error.log I can see this.
2014/05/23 13:04:16 [error] 23505#0: *295 directory index of “/var/www/mywebsite.com/public_html/current/” is forbidden, client: <myip>, server: mywebsite.com, request: “GET / HTTP/1.1”, host: “mywebsite.com”
What am I doing wrong? My regards. Renato