Files
emails/ui/setup/settings/03_urls.php

9 lines
215 B
PHP
Raw Normal View History

2022-11-09 15:22:58 -03:00
<?php
return [
'urls' => function() {
2022-11-25 20:52:59 -03:00
$arr = ['base' => $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST']];
2022-11-09 15:22:58 -03:00
$arr['api'] = 'http://localhost:8080';
return (object) $arr;
}
];