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
Resource does not respect rules order, nor does have an order argument:
cors_rule { allowed_headers = [""] allowed_methods = ["GET"] allowed_origins = [""] max_age_seconds = 3000 }
cors_rule { allowed_headers = ["*"] allowed_methods = ["PUT", "POST", "DELETE"] allowed_origins = ["https://${digitalocean_record.project-dns-ipv4-app1.fqdn}"] max_age_seconds = 3000 }
In DO UI GET was second in the list and assets were issuing CORS error. After manually changing order everything was ok.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Resource does not respect rules order, nor does have an order argument:
cors_rule {
allowed_headers = [""]
allowed_methods = ["GET"]
allowed_origins = [""]
max_age_seconds = 3000
}
cors_rule {
allowed_headers = ["*"]
allowed_methods = ["PUT", "POST", "DELETE"]
allowed_origins = ["https://${digitalocean_record.project-dns-ipv4-app1.fqdn}"]
max_age_seconds = 3000
}
In DO UI GET was second in the list and assets were issuing CORS error. After manually changing order everything was ok.
The text was updated successfully, but these errors were encountered: