default services conflit ?

This commit is contained in:
armansansd
2022-04-27 11:30:43 +02:00
parent 28190a5749
commit 8bb1064a3b
8132 changed files with 900138 additions and 426 deletions

View File

@@ -0,0 +1,4 @@
dev:
root: /other/path/to/bob
other:
root: /other/other/path/to/bob

View File

@@ -0,0 +1,4 @@
dev:
root: /other/path/to/fred
other:
root: /other/other/path/to/fred

View File

@@ -0,0 +1,8 @@
default: dev
dev:
root: /dup/path/to/single
alternate:
root: /dup/alternate/path/to/single
common:
foo: dup

View File

@@ -0,0 +1,11 @@
<?php
$aliases['production'] = [
'uri' => 'example.com',
'root' => '/path/to/drupal',
];
$aliases['staging'] = [
'uri' => 'staging.example.com',
'root' => '/path/to/drupal',
];

View File

@@ -0,0 +1,43 @@
<?php
$aliases['live'] = array (
'parent' => '@server.digital-ocean',
'project-type' => 'live',
'root' => '/srv/www/couturecostume.com/htdocs',
'uri' => 'couturecostume.com',
'path-aliases' => array(
'%dump-dir' => '/var/sql-dump/',
),
'target-command-specific' => array(
'sql-sync' => array(
'disable' => array('stage_file_proxy'),
'permission' => array(
'authenticated user' => array(
'remove' => array('access environment indicator'),
),
'anonymous user' => array(
'remove' => 'access environment indicator',
),
),
),
),
);
$aliases['update'] = array (
'parent' => '@server.nitrogen',
'root' => '/srv/www/update.couturecostume.com/htdocs',
'uri' => 'update.couturecostume.com',
'target-command-specific' => array(
'sql-sync' => array(
'enable' => array('environment_indicator', 'stage_file_proxy'),
'permission' => array(
'authenticated user' => array(
'add' => array('access environment indicator'),
),
'anonymous user' => array(
'add' => 'access environment indicator',
),
),
),
),
);

View File

@@ -0,0 +1,3 @@
<?php
// The search scripts shouldn't find me as I do not match the patterns.

View File

@@ -0,0 +1,4 @@
<?php
$options['uri'] = 'http://example.com';
$options['root'] = '/path/to/drupal';

View File

@@ -0,0 +1,50 @@
<?php
/**
* Pantheon drush alias file, to be placed in your ~/.drush directory or the aliases
* directory of your local Drush home. Once it's in place, clear drush cache:
*
* drush cc drush
*
* To see all your available aliases:
*
* drush sa
*
* See http://helpdesk.getpantheon.com/customer/portal/articles/411388 for details.
*/
$aliases['outlandish-josh.test'] = array(
'uri' => 'test-outlandish-josh.pantheonsite.io',
'db-url' => 'mysql://pantheon:pw@dbserver.test.site-id.drush.in:11621/pantheon',
'db-allows-remote' => TRUE,
'remote-host' => 'appserver.test.site-id.drush.in',
'remote-user' => 'test.site-id',
'ssh-options' => '-p 2222 -o "AddressFamily inet"',
'path-aliases' => array(
'%files' => 'code/sites/default/files',
'%drush-script' => 'drush',
),
);
$aliases['outlandish-josh.live'] = array(
'uri' => 'www.outlandishjosh.com',
'db-url' => 'mysql://pantheon:pw@dbserver.live.site-id.drush.in:10516/pantheon',
'db-allows-remote' => TRUE,
'remote-host' => 'appserver.live.site-id.drush.in',
'remote-user' => 'live.site-id',
'ssh-options' => '-p 2222 -o "AddressFamily inet"',
'path-aliases' => array(
'%files' => 'code/sites/default/files',
'%drush-script' => 'drush',
),
);
$aliases['outlandish-josh.dev'] = array(
'uri' => 'dev-outlandish-josh.pantheonsite.io',
'db-url' => 'mysql://pantheon:pw@dbserver.dev.site-id.drush.in:21086/pantheon',
'db-allows-remote' => TRUE,
'remote-host' => 'appserver.dev.site-id.drush.in',
'remote-user' => 'dev.site-id',
'ssh-options' => '-p 2222 -o "AddressFamily inet"',
'path-aliases' => array(
'%files' => 'code/sites/default/files',
'%drush-script' => 'drush',
),
);

View File

@@ -0,0 +1,11 @@
<?php
$aliases['isp'] = array (
'remote-host' => 'hydrogen.server.org',
'remote-user' => 'www-admin',
);
$aliases['nitrogen'] = array (
'remote-host' => 'nitrogen.server.org',
'remote-user' => 'admin',
);

View File

@@ -0,0 +1,4 @@
dev:
root: /other/path/to/bob
other:
root: /other/other/path/to/bob

View File

@@ -0,0 +1,4 @@
dev:
root: /other/path/to/fred
other:
root: /other/other/path/to/fred

View File

@@ -0,0 +1 @@
root: /other/path/to/simple

View File

@@ -0,0 +1,7 @@
default: dev
dev:
root: /other/path/to/single
other:
root: /other/other/path/to/single
common:
foo: baz

View File

@@ -0,0 +1,2 @@
prod:
bar: overridden

View File

@@ -0,0 +1 @@
root: /path/to/simple

View File

@@ -0,0 +1,9 @@
default: dev
dev:
root: /path/to/single
alternate:
root: /alternate/path/to/single
empty:
foo: bar
common:
foo: bar

View File

@@ -0,0 +1,9 @@
default: dev
dev:
root: /path/to/wild
uri: https://dev.example.com
'*':
root: /wild/path/to/wild
uri: https://${env-name}.example.com
common:
foo: bar