github.com/drud/ddev@v1.21.5-alpha1.0.20230226034409-94fcc4b94453/docs/content/users/topics/sharing.md (about) 1 # Sharing Your Project 2 3 Even though DDEV is intended for local development on a single machine, not as a public server, there are a number of reasons you might want to expose your work in progress more broadly: 4 5 * Testing with a mobile device 6 * Sharing on a local network so that everybody on the local network can see your project 7 * Some CI applications 8 9 There are at least three different ways to share a running DDEV project outside the local developer machine: 10 11 * [`ddev share`](../usage/commands.md#share) (using ngrok to share over the internet) 12 * Local name resolution and sharing the project on the local network 13 * Sharing just the HTTP port of the local machine on the local network 14 15 ## Using `ddev share` (Easiest) 16 17 `ddev share` proxies the project via [ngrok](https://ngrok.com), and it’s by far the easiest way to solve the problem of sharing your project with others on your team or around the world. It’s built into DDEV and “just works” for most people, and requires a free or paid [ngrok.com](https://ngrok.com) account. All you do is run `ddev share` and then give the resultant URL to your collaborator or use it on your mobile device. [Read the basic how-to from DrupalEasy](https://www.drupaleasy.com/blogs/ultimike/2019/06/sharing-your-ddev-local-site-public-url-using-ddev-share-and-ngrok) or run `ddev share -h` for more. 18 19 There are CMSes that make this a little harder, especially WordPress and Magento 2. Both of those only respond to a single base URL, and that URL is coded into the database, so it makes this a little harder. For both of these I recommend paying ngrok the $5/month for a [basic plan](https://ngrok.com/pricing) so you can use a stable subdomain with ngrok. 20 21 ### Setting up a Stable ngrok Subdomain 22 23 1. Get a paid token with at least the basic plan, and configure it. It will be in `~/.ngrok2/ngrok.yml` as `authtoken`. 24 2. Configure `ngrok_args` to use a stable subdomain. In `.ddev/config.yaml`, `ngrok_args: --subdomain wp23` will result in ngrok always using `wp23.ngrok.io` as the URL, so it’s not changing on you all the time. 25 26 ### WordPress: Change the URL with `wp search-replace` 27 28 WordPress only has the one base URL, but the `wp` command is built into DDEV’s web container. 29 30 This set of steps assumes an ngrok subdomain of `wp23` and a starting URL of `https://wordpress.ddev.site`. 31 32 * Configure `.ddev/config.yaml` to use a custom subdomain: `ngrok_args: --subdomain wp23`. 33 * Make a backup of your database with [`ddev export-db`](../usage/commands.md#export-db) or [`ddev shapshot`](../usage/commands.md#snapshot). 34 * Edit `wp-config-ddev.php` (or whatever your config is) to change `WP_HOME`, for example, `define('WP_HOME', 'https://wp23.ngrok.io');` 35 * `ddev wp search-replace https://wordpress.ddev.site https://wp23.ngrok.io`, assuming your project is configured for `https://wordpress.ddev.site` and your `ngrok_args` are configured for the wp23 subdomain. 36 * Now run [`ddev share`](../usage/commands.md#share). 37 38 ### Magento2: Change the URL with Magento Tool 39 40 This set of steps assumes an ngrok subdomain `mg2`: 41 42 * Configure `.ddev/config.yaml` to use a custom subdomain with `ngrok_args: --subdomain mg2`. 43 * Make a backup of your database. 44 * Edit your `.ddev/config.yaml`. 45 * Run [`ddev ssh`](../usage/commands.md#ssh). 46 * Run `bin/magento setup:store-config:set --base-url="https://mg2.ngrok.io/`. 47 * Run [`ddev share`](../usage/commands.md#share) and you’ll see your project at `mg2.ngrok.io`. 48 49 ### Using nip.io or Custom Name Resolution on Your Local Network 50 51 Another solution is to **not** use `*.ddev.site` as your project URLs, but to use DNS that you control and that points to the host machine where your project lives. In general, you’ll want to use HTTP URLs with this approach, because it requires manual configuration of the client machine to get it to trust the development certificate that DDEV uses and configures with `mkcert` on the local machine. 52 53 * Use [nip.io](http://nip.io/) to point a domain name to your host. If your computer’s IP address is 192.168.5.101, you can use a domain name like `mysite.192.168.5.101.nip.io` and that domain name will point to your computer. Add that to your project’s `additional_fqdns` with `ddev config --additional-fqdns=mysite.192.168.5.101.nip.io` and [`ddev start`](../usage/commands.md#start). Now people in your internal network should be able to `ping mysite.192.168.5.101.nip.io` if your firewall allows it. (If you have other convenient ways to create a DNS entry for this, you can use those instead of nip.io.) 54 * Configure `~/.ddev/global_config.yaml` to bind to all ports: `ddev config global --router-bind-all-interfaces && ddev poweroff && ddev start`. 55 * Now mobile apps or other computers which are on your **local** network should be able to access your project. Use the HTTP URL rather than the HTTPS URL because computers outside yours don’t know how to trust the developer TLS certificate you’re using. (You can run [`ddev describe`](../usage/commands.md#describe) to see the HTTP URL, but it’s typically the same as the HTTPS URL, but with “http” instead of “https”.) 56 * Make sure your firewall allows access from your local network to the main interface you’re using. In the example here, you should be able to ping 192.168.5.101 and `curl http://192.168.5.101` and get an answer in each case. 57 * If you’re using WordPress or Magento 2, you’ll need to change the base URL as described in the [`ddev share`](../usage/commands.md#share) instructions above. 58 59 ## Exposing a Host Port and Providing a Direct URL 60 61 DDEV’s web container also exposes an HTTP port directly, in addition to the normal routing by name and via `ddev_router`. You can expose this port and it may be a useful approach in some situations. 62 63 * Configure the project `host_webserver_port` to a known port (that does not conflict with already configured ports). For example, using port 8080, `ddev config --host-webserver-port=8080 --bind-all-interfaces`. This will configure the host-bound port to 8080 and allow it to bind to all network interfaces so colleagues (or hackers) on your local network can access this project’s ports. 64 * Make sure your firewall allows access to the port on your host machine. 65 * If you’re using WordPress or Magento 2 you’ll need to change the base URL as described in the [`ddev share`](../usage/commands.md#share) instructions above. 66 * Each project on your computer must use different ports or you’ll have port conflicts, and you can’t typically use ports 80 or 443 because `ddev-router` is already using those for normal routing. 67 * If you don’t want to run `ddev-router` at all, you can omit it globally with `ddev config global --omit-containers=ddev-router`. This is a specialty thing to do when you don’t need the reverse proxy, as for [DrupalPod](https://github.com/shaal/DrupalPod) or other [Gitpod](https://www.gitpod.io/) applications. 68 69 Computers and mobile devices on your local network should now be able to access port 8080, on the (example) host address 192.168.5.23, so `http://192.168.5.23:8080` You’ll probably want to use the HTTP URL; your coworker’s browser will not trust the developer TLS certificate you’re using.