* correctly pass secrets to workspace-containers

* update README
* helper-scripts with create symlinks helper and get composer auth github token helper
This commit is contained in:
2021-04-19 14:01:33 +03:00
parent fb9e1c6f4f
commit ff0b62ed49
11 changed files with 177 additions and 22 deletions

View File

@ -1,9 +1,9 @@
upstream php-fpm73 {
server php-fpm73:9000;
upstream php73 {
server php73:9000;
}
upstream php-fpm74 {
server php-fpm74:9000;
upstream php74 {
server php74:9000;
}
map $http_host $root {
@ -20,7 +20,7 @@ server {
include includes.d/octobercms.conf;
include includes.d/staticfiles.conf;
location ~ ^/index.php {
fastcgi_pass php-fpm74;
fastcgi_pass php74;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
@ -49,7 +49,7 @@ server {
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_pass php-fpm73;
fastcgi_pass php73;
fastcgi_index index.php;
}
}
}