Datawalke / Coordino

Self-hosted Knowledge Software your question & answer system written on top of the CakePHP Framework
http://coordino.com
MIT License
715 stars 175 forks source link

Could you guys release a version on LNMP? #59

Closed breezechen closed 11 years ago

breezechen commented 11 years ago

I have tried to convert apache .htaccess file to nginx rewrite rule, but failed anyway, so could you guys release a LNMP version? Thank You!

ddrager commented 11 years ago

Hope this helps someone, I have it working with the following rewrite rules in nginx:

rewrite ^\/$ /app/webroot/index.php last;
rewrite ^(.+)$ /app/webroot/$1 last;
location / {
    try_files $uri $uri/ /index.php?url=$args /index.php;
}
breezechen commented 11 years ago

Oh, thank u!