Question
Same domain Same droplet multi cakephp sites
Hi there,
I want to have
http://cake.dev/ ==> cake2 app
http://cake.dev/cake3-app ==> cake3 app
This is my nginx config.
This is my nginx config
server {
listen 80;
client_max_body_size 2M;
server_name cake.dev;
root /var/virtual/cake2app/webroot;
location /cake3-app/ {
alias /var/virtual/cake3app/webroot;
}
access_log /var/log/nginx/cakephpsite.com-access.log;
include common.conf;
include cakephp.conf;
}
This is common.conf
index index.html;
location ~ /\.ht {
deny all;
}
sendfile off;
This is cakephp.conf
include php.conf;
location / {
try_files $uri $uri/ /index.php?$uri&$args;
expires max;
access_log off;
}
This is php.conf
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
}
index index.php;
the cake.dev
is correctly pointing to my cake 2 app.
I cannot get cake.dev/cake3-app to point to the cake 3 app.
Inside my cake 3 app, I have a users/login
action which works perfectly if I access the cake 3 from a separate domain.
But that is not what I want.
What have I done wrong in terms of the nginx config?
My error is consistently a 403 if I access cake.dev/cake3-app/
and I get a cake error message telling me there is no such controller when I access cake.dev/cake3-app
.
Please advise.
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.
×