Blog

Debugging IIS Express Sites on Mobile Devices with Visual Studio

Author Lee Timmins Date 11th Sep 2025 Comments Comments

Step 1. Configure IIS Express for External Access

By default, IIS Express only listens on localhost. To make your site accessible from your LAN IP address:

  1. Locate the applicationhost.config file in your solution folder. It’s usually found under: .vs\foo\config\applicationhost.config.
  2. Open the file and find your site’s <bindings> section.
  3. Add a new binding for your machine’s local IP address (leave the existing bindings). For example:

<bindings>
    <binding protocol="http" bindingInformation="*:11111:192.168.1.100" />
    <binding protocol="https" bindingInformation="*:12345:192.168.1.100" />
</bindings>
Replace 192.168.1.100 with your computer’s LAN IP (you can find it with ipconfig).

This tells IIS Express to listen on both localhost and your LAN IP, making it reachable from other devices on the same network.

Read More...


Installing Magento on Windows with Docker

Author Lee Timmins Date 27th Jul 2022 Comments Comments

The following article explains two approaches to installing Magento on Windows with Docker. The first method is simpler to understand but runs extremely slowly, therefore it is recommended to use method 2.

For both methods you should first make sure you have Docker Desktop (with WSL 2) installed. Also you should setup your local domain by adding "127.0.0.1 magento.test" to your hosts file.

Read More...