You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
When trying to allow http server access from remote machines, FAHControl writes the following to config.xml:
<!-- HTTP Server -->
<allow v='0.0.0.0/0'/>
<deny v=''/>
This doesn't allow remote access to the http server. Searching the strings of FAHClient, I found 'web-allow'. Changing to the following got web access working for me:
<!-- HTTP Server -->
<allow v='0.0.0.0/0'/>
<web-allow v='0.0.0.0/0'/>
<deny v=''/>
There is probably a deny equivalent and this let me in with no password. Should FAHControl be updated to use 'web-allow' instead of/along with 'allow'?
The text was updated successfully, but these errors were encountered:
When trying to allow http server access from remote machines, FAHControl writes the following to config.xml:
This doesn't allow remote access to the http server. Searching the strings of FAHClient, I found 'web-allow'. Changing to the following got web access working for me:
There is probably a deny equivalent and this let me in with no password. Should FAHControl be updated to use 'web-allow' instead of/along with 'allow'?
The text was updated successfully, but these errors were encountered: