configuration-templates – Blame information for rev 69

Subversion Repositories:
Rev:
Rev Author Line No. Line
10 office 1 ###########################################################################
2 ## Copyright (C) Wizardry and Steamworks 2013 - License: GNU GPLv3 ##
3 ## Please see: http://www.gnu.org/licenses/gpl.html for legal details, ##
4 ## rights of fair usage, the disclaimer and warranty conditions. ##
5 ###########################################################################
6 ## Squid3 - rules to anonymize HTTP response headers. ##
7 ###########################################################################
8  
69 office 9 # CORS
10 office 10 reply_header_access Access-Control-Allow-Origin allow all
69 office 11 reply_header_access Access-Control-Allow-Credentials allow all
12 reply_header_access Access-Control-Expose-Headers allow all
13 reply_header_access Access-Control-Max-Age allow all
14 reply_header_access Access-Control-Allow-Methods allow all
15 reply_header_access Access-Control-Allow-Headers allow all
16 #
10 office 17 reply_header_access Accept-Patch allow all
18 reply_header_access Accept-Ranges allow all
19 reply_header_access Age allow all
20 reply_header_access Allow allow all
21 reply_header_access Alt-Svc allow all
22 # reply_header_access Cache-Control allow all
23 reply_header_access Connection allow all
24 reply_header_access Content-Disposition allow all
25 reply_header_access Content-Encoding allow all
26 reply_header_access Content-Language allow all
27 reply_header_access Content-Length allow all
28 reply_header_access Content-Location allow all
29 reply_header_access Content-MD5 allow all
30 reply_header_access Content-Range allow all
31 reply_header_access Content-Type allow all
32 ### The date and time that the message was sent.
33 # reply_header_access Date allow all
34 reply_header_access ETag allow all
35 reply_header_access Expires allow all
36 reply_header_access Last-Modified allow all
37 reply_header_access Link allow all
38 reply_header_access Location allow all
39 reply_header_access P3P allow all
40 # reply_header_access Pragma allow all
41 reply_header_access Proxy-Authenticate allow all
42 reply_header_access Public-Key-Pins allow all
43 reply_header_access Refresh allow all
44 reply_header_access Retry-After allow all
45 reply_header_access Server allow all
46 reply_header_access Set-Cookie allow all
47 reply_header_access Status allow all
48 ### HSTS (no, thank you) and cache.
49 # reply_header_access Strict-Transport-Security allow all
50 reply_header_access Trailer allow all
51 reply_header_access Transfer-Encoding allow all
52 ### Tracking Status Value (TSV), value suggested to be sent in response to
53 ### a do-not-track (DNT). No, thank you.
54 # reply_header_access TSV allow all
55 ### Ask the client to upgrade to another protocol.
56 # reply_header_access Upgrade allow all
57 reply_header_access Vary allow all
58 reply_header_access Via allow all
59 reply_header_access Warning allow all
60 reply_header_access WWW-Authenticate allow all
61 reply_header_access X-Frame-Options allow all
62 reply_header_access X-XSS-Protection allow all
63 reply_header_access Content-Security-Policy allow all
64 reply_header_access X-Content-Security-Policy allow all
65 reply_header_access X-WebKit-CSP allow all
66 reply_header_access X-Content-Type-Options allow all
67 reply_header_access X-Powered-By allow all
68 reply_header_access X-UA-Compatible allow all
69 reply_header_access X-Content-Duration allow all
70 # reply_header_access Upgrade-Insecure-Requests allow all
71 # reply_header_access X-Request-ID allow all
72 # reply_header_access X-Correlation-ID allow all
73 reply_header_access X-Accel-Redirect allow all
74 reply_header_access X-Sendfile allow all
75 reply_header_access X-LIGHTTPD-send-file allow all
11 office 76 reply_header_access X-Sendfile2 allow all
10 office 77 reply_header_access X-Accel-Limit-Rate allow all
78 reply_header_access X-Accel-Buffering allow all
79 reply_header_access X-Accel-Charset allow all
80 reply_header_access Other deny all
81 reply_header_access All deny all