How do I deploy CodeIgniter on Laravel Forge? -


i want deploy codeigniter on laravel forge platform, because love simplicity , auto-deploy nature of platform. how do it?

this how did it, , problems had doing it.

problem 1 because forge runs on nginx, not apache, apache php directives ignored. (i think). so, main problem had short_open_tag directive in default configuration set 'off', meaning php fpm configuration

problem 2

in nginx configuration file specific site (not server) replace

try_files $uri $uri/ /index.php?$query_string; 

with

try_files $uri $uri/ /index.php; 

Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -