diff --git a/app/Commands/ServerAwareCommand.php b/app/Commands/ServerAwareCommand.php index c21fbf3..4061b14 100644 --- a/app/Commands/ServerAwareCommand.php +++ b/app/Commands/ServerAwareCommand.php @@ -12,7 +12,7 @@ use Symfony\Component\Console\Output\ConsoleOutput; abstract class ServerAwareCommand extends Command { - const DEFAULT_HOSTNAME = 'sharedwithexpose.com'; + const DEFAULT_HOSTNAME = 'bitinflow.dev'; const DEFAULT_PORT = 443; const DEFAULT_SERVER_ENDPOINT = 'https://expose.dev/api/servers'; @@ -45,7 +45,7 @@ abstract class ServerAwareCommand extends Command /** * Try to find the server in the servers array. * If no array exists at all (when upgrading from v1), - * always return sharedwithexpose.com. + * always return bitinflow.dev. */ if (config('expose.servers') === null) { return static::DEFAULT_HOSTNAME; @@ -70,7 +70,7 @@ abstract class ServerAwareCommand extends Command /** * Try to find the server in the servers array. * If no array exists at all (when upgrading from v1), - * always return sharedwithexpose.com. + * always return bitinflow.dev. */ if (config('expose.servers') === null) { return static::DEFAULT_PORT; diff --git a/builds/.gitignore b/builds/.gitignore deleted file mode 100644 index 593bcf0..0000000 --- a/builds/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -!.gitignore -* diff --git a/builds/expose b/builds/expose index debab8d..9108f35 100755 Binary files a/builds/expose and b/builds/expose differ diff --git a/composer.json b/composer.json index da3bf50..8f62a9c 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "beyondcode/expose", + "name": "bitinflow/expose", "type": "project", "description": "Create public URLs for local sites through any firewall and VPN.", "keywords": [ @@ -7,9 +7,13 @@ "tunnel", "ngrok" ], - "homepage": "https://sharedwithexpose.com", + "homepage": "https://bitinflow.dev", "license": "MIT", "authors": [ + { + "name": "René Preuß", + "email": "rene@bitinflow.com" + }, { "name": "Marcel Pociot", "email": "marcel@beyondco.de" diff --git a/config/commands.php b/config/commands.php index ec54067..1d4fe1e 100644 --- a/config/commands.php +++ b/config/commands.php @@ -13,7 +13,7 @@ return [ | */ - 'default' => \App\Commands\ShareCurrentWorkingDirectoryCommand::class, + 'default' => NunoMaduro\LaravelConsoleSummary\SummaryCommand::class, /* |-------------------------------------------------------------------------- diff --git a/config/expose.php b/config/expose.php index 8ca4f57..32e6d8f 100644 --- a/config/expose.php +++ b/config/expose.php @@ -13,8 +13,8 @@ return [ | */ 'servers' => [ - 'main' => [ - 'host' => 'sharedwithexpose.com', + 'free' => [ + 'host' => 'bitinflow.dev', 'port' => 443, ], ], @@ -32,7 +32,7 @@ return [ | if available. | */ - 'server_endpoint' => 'https://expose.dev/api/servers', + 'server_endpoint' => 'https://bitinflow.dev/api/servers', /* |-------------------------------------------------------------------------- @@ -43,7 +43,7 @@ return [ | or the servers endpoint above. | */ - 'default_server' => 'main', + 'default_server' => 'free', /* |-------------------------------------------------------------------------- diff --git a/docs/api/settings.md b/docs/api/settings.md index 5601051..0efd0ce 100644 --- a/docs/api/settings.md +++ b/docs/api/settings.md @@ -16,7 +16,7 @@ The result looks like this: ```json { "configuration":{ - "hostname": "sharedwithexpose.com", + "hostname": "bitinflow.dev", "port": 8080, "database": "/home/forge/expose/database/expose.db", "validate_auth_tokens": false, diff --git a/docs/client/configuration.md b/docs/client/configuration.md index d39a648..f12c676 100644 --- a/docs/client/configuration.md +++ b/docs/client/configuration.md @@ -34,12 +34,12 @@ return [ |-------------------------------------------------------------------------- | | The expose server to connect to. By default, expose is using the free - | sharedwithexpose.com server, offered by Beyond Code. You will need a free + | bitinflow.dev server, offered by Beyond Code. You will need a free | Beyond Code account in order to authenticate with the server. | Feel free to host your own server and change this value. | */ - 'host' => 'sharedwithexpose.com', + 'host' => 'bitinflow.dev', /* |-------------------------------------------------------------------------- diff --git a/docs/getting-started/sharing-your-first-site.md b/docs/getting-started/sharing-your-first-site.md index 46aef16..cdf88e2 100644 --- a/docs/getting-started/sharing-your-first-site.md +++ b/docs/getting-started/sharing-your-first-site.md @@ -28,6 +28,6 @@ expose share https://my-local-site.dev ## Custom Subdomains ::pro -To make your life easier, Expose tries to share your local URLs using custom subdomains. This allows you to share your local URL `my-local-site.dev` as `my-local-site.us-1.sharedwithexpose.com`. +To make your life easier, Expose tries to share your local URLs using custom subdomains. This allows you to share your local URL `my-local-site.dev` as `my-local-site.us-1.bitinflow.dev`. -By default, Expose uses a slugified version of the URL that you want to share, but you can also [choose your own custom subdomain](/docs/client/sharing#share-a-local-site-with-a-given-subdomain). \ No newline at end of file +By default, Expose uses a slugified version of the URL that you want to share, but you can also [choose your own custom subdomain](/docs/client/sharing#share-a-local-site-with-a-given-subdomain). diff --git a/docs/release-notes/2-0-0.md b/docs/release-notes/2-0-0.md index 5e176f9..73f0a70 100644 --- a/docs/release-notes/2-0-0.md +++ b/docs/release-notes/2-0-0.md @@ -38,6 +38,6 @@ Expose 1.0 was limited to one server that it could connect to. In case of our fr ### White-Label Domain support -The 2.0 update of Expose finally allows you to register a custom white-label domain on the Expose servers, allowing you to use your own custom domain with the Expose service. This means that you no longer have to share `*.sharedwithexpose.com` URLs with your colleagues and clients, but you can now register your own domain and use that instead. All it takes is a simple CNAME DNS entry and you're ready to go! +The 2.0 update of Expose finally allows you to register a custom white-label domain on the Expose servers, allowing you to use your own custom domain with the Expose service. This means that you no longer have to share `*.bitinflow.dev` URLs with your colleagues and clients, but you can now register your own domain and use that instead. All it takes is a simple CNAME DNS entry and you're ready to go! White label domains get TLS/SSL certificates on the first connect to a URL automatically. This process takes a few seconds so that first page load can take a moment or even fail – try again after a few seconds and all additional requests will be fast until the certificate expires. Re-using the same (sub-)domain makes sure that your certificate stays available. diff --git a/docs/server/starting-the-server.md b/docs/server/starting-the-server.md index dc2311c..c3d3a31 100644 --- a/docs/server/starting-the-server.md +++ b/docs/server/starting-the-server.md @@ -98,7 +98,7 @@ return [ |-------------------------------------------------------------------------- | | The expose server to connect to. By default, expose is using the free - | sharedwithexpose.com server, offered by Beyond Code. You will need a free + | bitinflow.dev server, offered by Beyond Code. You will need a free | Beyond Code account in order to authenticate with the server. | Feel free to host your own server and change this value. |