Hello,
Have this 403 error. My website is developped with Laravel.
NGINX CONFIG:
server { listen 127.0.0.1:8080 default_server; server_name localhost; root /usr/share/nginx/html; index public/index.php; }
The index, is located on the folder public. But when I goes to my site, I start download the index, but I didn’t see the index… Have try with the view of the index located here -> resources/views/main/main.blade.php
But, same error.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You have a few errors in your server block. Below is a corrected version. As it is a PHP:Laravel project you will need to add the necessary directives for NGINX to know how to interoperate PHP.
You can find info you need here. https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in-ubuntu-16-04