We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Racking my brain on getting this to work. I have have a WP install and other things in /home/site/www and trying to install CI in /home/site/www/api
Keep getting 404 errors. Thoughts?
nginx conf below. Thanks!
location /api { root /home/site/www/api/public; index index.php; try_files $uri $uri/ /index.php?$args; location ~ \.php$ { try_files $uri =404; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $request_filename; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php_fpm.sock; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Racking my brain on getting this to work. I have have a WP install and other things in /home/site/www and trying to install CI in /home/site/www/api
Keep getting 404 errors. Thoughts?
nginx conf below. Thanks!
The text was updated successfully, but these errors were encountered: