CollaboraOnline / Docker-CODE

Dockerfile and scripts to generate CODE Docker image
147 stars 67 forks source link

Block Admin Console #61

Closed MarcWoodyard closed 5 years ago

MarcWoodyard commented 5 years ago

Is there a way to block access to the admin console (https://office.domain.com/loleaflet/dist/admin/admin.html)?

MarcWoodyard commented 5 years ago

Fixed it. Just added this to my apache config.

# Protect Admin Area
<Location /loleaflet/dist/admin>
        Order deny,allow
        Deny from all
        Allow from 192.168.1.0/24
</Location>