Online Mode and Offline Mode
From UwAmp Wiki
Introduction
This mode can manager folder security simply
If the online mode is selected in the main UI, all folder with the {ONLINE_MODE} macro will be accesible from all the computer. {ONLINE_MODE} will be replaced by:
Order allow,deny Allow from all
If the offline mode is selected in the main UI, all folder with the {ONLINE_MODE} macro will be accesible just from your computer {ONLINE_MODE} ill be replaced by :
Order deny,allow Deny from all Allow from 127.0.0.1 localhost
Exemple of macro usage in the apache config file
<Directory "{DOCUMENTPATH}/">
Options Indexes FollowSymLinks
AllowOverride All
{ONLINE_MODE}
</Directory>


