Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a documentation error on the setup_access page. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
742d64d916facd8c49807fd34a0eab26 |
| User & Date: | drh 2019-01-21 16:57:09.378 |
Context
|
2019-01-21
| ||
| 18:28 | Enhance the "redirect-to-https" setting so that if it is 2 or more it forces all pages to travel of a secure connection. check-in: 4aba9ea6fe user: drh tags: trunk | |
| 17:33 | Provide the option to force all web page requests to go over HTTPS. check-in: f372e18979 user: drh tags: https-all-pages-option | |
| 16:57 | Fix a documentation error on the setup_access page. check-in: 742d64d916 user: drh tags: trunk | |
| 16:54 | When SQLite detects that the repository associated with a checkout has been replaced by a clone (such that the RID values potentially change) then automatically adjust the content of the checkout database. check-in: fff37e624e user: drh tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
329 330 331 332 333 334 335 |
onoff_attribute("Redirect to HTTPS on the Login page",
"redirect-to-https", "redirhttps", 0, 0);
@ <p>When selected, force the use of HTTPS for the Login page.
@ <p>Details: When enabled, this option causes the $secureurl TH1
@ variable is set to an "https:" variant of $baseurl. Otherwise,
@ $secureurl is just an alias for $baseurl. Also when enabled, the
@ Login page redirects to https if accessed via http.
| | | 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
onoff_attribute("Redirect to HTTPS on the Login page",
"redirect-to-https", "redirhttps", 0, 0);
@ <p>When selected, force the use of HTTPS for the Login page.
@ <p>Details: When enabled, this option causes the $secureurl TH1
@ variable is set to an "https:" variant of $baseurl. Otherwise,
@ $secureurl is just an alias for $baseurl. Also when enabled, the
@ Login page redirects to https if accessed via http.
@ (Property: "redirect-to-https")
@ <hr />
onoff_attribute("Require password for local access",
"localauth", "localauth", 0, 0);
@ <p>When enabled, the password sign-in is always required for
@ web access. When disabled, unrestricted web access from 127.0.0.1
@ is allowed for the <a href="%R/help/ui">fossil ui</a> command or
@ from the <a href="%R/help/server">fossil server</a>,
|
| ︙ | ︙ |