On Wed, Aug 14, 2019 at 10:55:36PM -0400, justcode wrote:
Hi there,
> add_header 'Access-Control-Allow-Origin' '*' always;
> add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, OPTIONS, DELETE';
> ERROR
> invalid number of arguments in "add_header"
>
> CAUSE
> add_header 'Access-Cont
Here is the code:
location ~ \.php$ {
include snippets/fastcgi-php.conf;
include fastcgi_params;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME /var/www/test/public$fastcgi_script_name;
#CORS SETTINGS
add_header 'Access-Control-Allow-Origin' '*' always;
add_head