To answer myself , update the example.com.conf in sites-enabled as follows ,
location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_pass http://127.0.0.1:8080; }
instead of
location / {
try_files $uri $uri/ /index.php$query_string;
}
from : http://askubuntu.com/questions/541105/nginx-over-apache-with-laravel-give-rewrite-mod-problems
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community