Sometimes you need to run your CMA application in a mode where other users can access it to look at the development progress.
1. Get an IP address
Every device that is connected to the local is assigned an IP address in that network. Usually, this is done by the router.
To get your IP address on the local network, use the following guide:
ifconfig-a
ip-4addr|grep192.168
ipconfiggetifaddren0> 192.168.0.xxx
2. Make port public
Each OS has a different approach to opening ports in its firewall.
# install itsudoapt-getinstallufw# enable servicesudoufwenable# make sure that it is runningsudoufwstatusverbose# open portsudoufwallowin80/tcp# now we have port 80 available outside of our system
# install itpamacinstallufw# enable servicesudosystemctlenableufw.servicesudoufwenable# open portsudoufwallowin80/tcp# now we have port 80 available outside of our system
MacOS
Go to System Preferences > Security & Privacy > Firewall.
Enable firewall. Then go to Firewall Options and make sure the only two options selected are Automatically allow built-in software to receive incoming connections and Automatically allow downloaded signed software to receive incoming connections.
3. Setup CMA
magento-scripts 2.2.x and newer
Add to your cma.js file field host with your IP address:
That is it! Now your devices on the local network can communicate with your CMA instance!
You also need to apply changes by running the start command without -s option.