I have created some sites with Laravel and I would like to upload them to a single domain (without subdomain, but in subdirectory).
Deploying the first site on example.com works.
The second exmple.com/test to create a subdirectory in example.com.
I can't set up the nginx to redirect visits to example.com/test
I tried with:
location /test/ {
alias /home/forge/example.com/test/public;
try_files $uri $uri/ /test/index.php?$query_string;
}
But, I always get error 403.
Can you give me some indication on how to proceed?
I use Laravel Forge and DigitalOcean.
Thanks,
Andrea
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…