To ensure that your changes are correct, strongly recommended that you use
apachectl -t |
to checck your configuration changes for errors. After this passes, you may need to reload Apache to make sure your changes are applied by running the command
sudo service httpd restart |
To avoid CORS errors, following configs needs to be added at the end of /etc/httpd/conf/httpd.conf
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "http://127.0.0.1:3000"
Header set Access-Control-Allow-Origin "http://127.0.0.1"
Header set Access-Control-Max-Age "300"
Header set Access-Control-Allow-Credentials "true"
Header set Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept"
Header set Access-Control-Allow-Methods "POST, GET, PUT, DELETE, PATCH, OPTIONS"
</IfModule> |