Hello,

On 06/12/2017 09:36 AM, ST wrote:
Hello,

I continue to move my configuration from Apache to nginx and now need to
convert following directives. Any hints?

Thank you for all the previous help!

1.

<IfModule mod_expires.c>
# set up max-age header directive for certain file types for proper
caching
ExpiresActive on
ExpiresByType text/css A604800
ExpiresByType text/js  A604800
...


2.

# force download for ceratain file types
<FilesMatch "\.(?i:fb2|mobi|mp3)$">
    Header set Content-Disposition attachment
</FilesMatch>
<FilesMatch "\.(?:fb2)$>
    Header set Content-type text/fb2+xml
</FilesMatch>

3.
Order Allow,Deny
Allow from All

# block certain files
<Files dirs.inc>
    Order Allow,Deny
    Deny from All
</Files>



http://nginx.org/en/docs/http/ngx_http_headers_module.html

http://nginx.org/en/docs/http/ngx_http_access_module.html

--
Jim Ohlstein
Profesional Mailman Hosting
https://mailman-hosting.com
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to