8 lines
149 B
Plaintext
8 lines
149 B
Plaintext
<Directory {{ www_dir }}>
|
|
Order deny,allow
|
|
{% for host in allowed_hosts %}
|
|
Allow from {{ host }}
|
|
{% endfor %}
|
|
Deny from all
|
|
</Directory>
|