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
Post a Comment