Merge remote-tracking branch 'origin/master' into develop
commit
4e970a4796
|
@ -233,6 +233,8 @@ Since the instance is destroyed and rebuilt after inactivity, config settings wi
|
||||||
### HTTPS Enforcement
|
### HTTPS Enforcement
|
||||||
Only needed if your setup requires Flask to redirect to HTTPS on its own -- generally this is something that doesn't need to be handled by Whoogle Search.
|
Only needed if your setup requires Flask to redirect to HTTPS on its own -- generally this is something that doesn't need to be handled by Whoogle Search.
|
||||||
|
|
||||||
|
Note: You should have your own domain name and [an https certificate](https://letsencrypt.org/getting-started/) in order for this to work properly.
|
||||||
|
|
||||||
- Heroku: Ensure that the `Root URL` configuration on the home page begins with `https://` and not `http://`
|
- Heroku: Ensure that the `Root URL` configuration on the home page begins with `https://` and not `http://`
|
||||||
- Docker: Add `--build-arg use_https=1` to your run command
|
- Docker: Add `--build-arg use_https=1` to your run command
|
||||||
- Pip/Pipx: Add the `--https-only` flag to the end of the `whoogle-search` command
|
- Pip/Pipx: Add the `--https-only` flag to the end of the `whoogle-search` command
|
||||||
|
|
|
@ -105,7 +105,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
<p style="color: {{ '#fff' if dark_mode else '#000' }};">
|
<p style="color: {{ '#fff' if config.dark else '#000' }};">
|
||||||
Whoogle Search v{{ version_number }} ||
|
Whoogle Search v{{ version_number }} ||
|
||||||
<a style="color: #685e79" href="https://github.com/benbusby/whoogle-search">View on GitHub</a>
|
<a style="color: #685e79" href="https://github.com/benbusby/whoogle-search">View on GitHub</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue