Skip to content

Commit da7ed17

Browse files
committed
Add configuration for Web Access login page
1 parent 36c6dac commit da7ed17

4 files changed

Lines changed: 18 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Updated to 4.17.0
1313
- Added configuration for Web Access & Web Administration ports
14+
- Added configuration for Web Access login page
1415

1516
## [1.10] - 2024-02-01
1617

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ The port on which the ThinLinc Web Access service listens on. See
7171
[the documentation for this
7272
parameter](https://www.cendio.com/resources/docs/tag-devel/html/config_webaccess.html#server-config-webaccess-listen_port).
7373
74+
```yaml
75+
thinlinc_webaccess_login_page: "tl-master-01.example.com"
76+
```
77+
78+
The URL to the login page of ThinLinc Web Access on the master server.
79+
See [the documentation for this
80+
parameter](https://www.cendio.com/resources/docs/tag-devel/html/config_webaccess.html#server-config-webaccess-login_page).
81+
7482
```yaml
7583
thinlinc_webadm_port: 1010
7684
```

defaults/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ thinlinc_printers: "yes"
1515
# The port on which the tlwebaccess service should listen
1616
thinlinc_webaccess_port: 300
1717

18+
# The URL to the login page of Web Access on the master server
19+
thinlinc_webaccess_login_page: "/"
20+
1821
# The port on which the tlwebadm service should listen
1922
thinlinc_webadm_port: 1010
2023

tasks/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@
9797
value: "{{ thinlinc_webaccess_port }}"
9898
notify: restart tlwebaccess
9999

100+
- name: Configure /webaccess/login_page
101+
tlconfig:
102+
param: /webaccess/login_page
103+
value: "{{ thinlinc_webaccess_login_page }}"
104+
notify: restart tlwebaccess
105+
100106
- name: Configure /tlwebadm/listen_port
101107
tlconfig:
102108
param: /tlwebadm/listen_port

0 commit comments

Comments
 (0)