Skip to content

Instantly share code, notes, and snippets.

@carlcs
Created September 20, 2018 10:40
Show Gist options
  • Save carlcs/674d5b07f47dfd25ef5603aa8f2bafb3 to your computer and use it in GitHub Desktop.
Save carlcs/674d5b07f47dfd25ef5603aa8f2bafb3 to your computer and use it in GitHub Desktop.
Site URLs with multiple sites in Craft 3
SITE_URL_EN="@web"
SITE_URL_DE="@web/de"
<?php
return [
// Global settings
'*' => [
'siteUrl' => [
'english' => getenv('SITE_URL_EN'),
'german' => getenv('SITE_URL_DE'),
],
],
// Staging environment settings
'staging' => [
],
// Production environment settings
'production' => [
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment