Restrict Access To GUI

From Kolmisoft Wiki
Revision as of 15:47, 6 August 2019 by Edvardas (talk | contribs) (Created page with '== Restrict access to GUI using Apache configuration == Edit file: /etc/httpd/conf/httpd.conf Add these lines to the bottom of the file: <Location /> Order deny,allow …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Restrict access to GUI using Apache configuration

Edit file:

/etc/httpd/conf/httpd.conf

Add these lines to the bottom of the file:

 <Location />
   Order deny,allow
   Deny from all
   Allow from 192.168.0.192
   Allow from 192.168.0.69
</Location>

Access to GUI will be forbidden for all hosts except 192.168.0.192 and 192.168.0.69.