diff options
Diffstat (limited to 'config/domain.php')
-rw-r--r-- | config/domain.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config/domain.php b/config/domain.php new file mode 100644 index 0000000..8d5bbca --- /dev/null +++ b/config/domain.php @@ -0,0 +1,27 @@ +<?php + +return [ + 'env_stub' => '.env', + 'storage_dirs' => [ + 'app' => [ + 'public' => [ + ], + ], + 'framework' => [ + 'cache' => [ + ], + 'testing' => [ + ], + 'sessions' => [ + ], + 'views' => [ + ], + ], + 'logs' => [ + ], + ], + 'domains' => [ + 'diskfloppy.me' => 'diskfloppy.me', + 'dwiskfwoppy.me' => 'diskfloppy.me', + ], + ]; |