skip to Main Content

Where to find information about the following Terraform provider attribute deprecation? – Docker

I can't find more information in the Terraform provider documentation, neither can I find any open issues in github. https://www.terraform.io/registry/providers/docs https://github.com/hashicorp/terraform/issues?q=is%3Aissue+is%3Aopen+provider+attribute+deprecated Terraform code: terraform { required_providers { docker = { source = "kreuzwerker/docker" version = "~> 2.13.0" } } }…

VIEW QUESTION

php nginx rewrite urls to index.php with

I've been trying to get this to work for a while now, but I'm failing manifold. I have the following configuration: server { listen 8081; server_name name.of.server.en; root /path/to/api; index index.php; location ~ .php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.4-fpm.sock; }…

VIEW QUESTION
Back To Top
Search