CodeIgniter 4 on Amazon AWS CLoud9 server |
Hi, I'm afraid your tutorial are recommending bad practices.
You should not access CI by using the public folder. That should be set to your document root in Apache. Please update your tutorial to reflect that. "sudo chmod 777" are a security risk. 777 should never be applied to a folder. Only owner and/or group** should have read and write access to your files. Wrong: http://example.com/public/ Correct: http://example.com/ ** group = www-data or what your apache/php runs under. |
Messages In This Thread |
CodeIgniter 4 on Amazon AWS CLoud9 server - by imabot - 05-04-2020, 09:34 AM
RE: CodeIgniter 4 on Amazon AWS CLoud9 server - by jreklund - 05-04-2020, 11:42 AM
RE: CodeIgniter 4 on Amazon AWS CLoud9 server - by imabot - 05-05-2020, 01:57 AM
RE: CodeIgniter 4 on Amazon AWS CLoud9 server - by jreklund - 05-05-2020, 11:27 AM
RE: CodeIgniter 4 on Amazon AWS CLoud9 server - by imabot - 05-06-2020, 09:40 AM
|