Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

Upload multiple Laravel sites to a single domain with Forge

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...