diff options
author | Josh Rickmar <jrick@devio.us> | 2012-07-31 09:55:26 -0400 |
---|---|---|
committer | Josh Rickmar <jrick@devio.us> | 2012-07-31 09:55:26 -0400 |
commit | 0c240f728d489408cda135786cf29244c1cd4d83 (patch) | |
tree | e063f765a1c73d301ec3ad5e8a5904165337a63e /freebsd/Makefile | |
parent | 02e03fcb67ee3ee37ff7bd5f287a7c53ca55f97e (diff) | |
download | xombrero-0c240f728d489408cda135786cf29244c1cd4d83.tar.gz |
Add a force_https setting (using the same domain syntax as the
whitelist settings) to make all requests to that domain use the HTTPS scheme, similar to HSTS. Install a new file, hsts-preload, into the resource dir. This is a regular config file with a bunch of force_https = ... lines, which is used to implement a preloaded HSTS list. Right now all the domains in this file, except for conformal.com and cyphertite.com, are taken directly from chromium's preloaded HSTS list (and should be synced with this file every so often). Also implement a new setting, preload_strict_transport (enabled by default), to enable or disable the loading of this preloaded HSTS list. Document force_https and preload_strict_transport in the manpage.
Diffstat (limited to 'freebsd/Makefile')
-rw-r--r-- | freebsd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/freebsd/Makefile b/freebsd/Makefile index a6be6af..9ed119b 100644 --- a/freebsd/Makefile +++ b/freebsd/Makefile @@ -72,6 +72,7 @@ install: all install -m 644 ../xombreroicon128.png $(DESTDIR)$(RESDIR) install -m 644 ../tld-rules $(DESTDIR)$(RESDIR) install -m 644 ../style.css $(DESTDIR)$(RESDIR) + install -m 644 ../hsts-preload $(DESTDIR)$(RESDIR) clean: rm -f xombrero *.o |