diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2021-01-25 09:16:34 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2021-01-25 09:16:34 -0500 |
| commit | 154a0ee9dc9e2faf8129a2b8cf9a6bea572d3dcf (patch) | |
| tree | 16163ca1e3da8c2b6d5482e0bac57292961d0417 | |
| parent | d6175b1c9a467568cf2e860239f9f5ac2a747b83 (diff) | |
fix typo in URL
| -rw-r--r-- | nginx/nginx.conf | 4 | ||||
| -rw-r--r-- | static/faq.html | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 8a05391d..786a7471 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -158,6 +158,10 @@ http { return 301 /install/web; } + location = /install-web { + return 301 /install/web; + } + location = /LICENSE { return 301 /LICENSE.txt; } diff --git a/static/faq.html b/static/faq.html index c8b4d632..44734880 100644 --- a/static/faq.html +++ b/static/faq.html @@ -1107,7 +1107,7 @@ <h2><a href="#install">How do I install GrapheneOS?</a></h2> <p>Either follow the <a href="/install/cli">official command-line installation - guide</a> or use <a href="/install-web">our web-based installer</a>. Third party + guide</a> or use <a href="/install/web">our web-based installer</a>. Third party installation guides tend to be out-of-date and often contain misguided advice and errors. If you have trouble with the installation process, ask for help from the <a href="/contact#community">#grapheneos Matrix / IRC channel</a>.</p> |
