Skip to content

Commit 741194b

Browse files
authored
Merge pull request #52 from linuxserver/update-readme
2 parents 4d0ef2d + df3cc54 commit 741194b

5 files changed

Lines changed: 30 additions & 22 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 as buildstage
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 AS buildstage
44
############## build stage ##############
55

66
# package version

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20 as buildstage
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20 AS buildstage
44
############## build stage ##############
55

66
# package version

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Find us at:
4141

4242
[Znc](http://wiki.znc.in/ZNC) is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.
4343

44-
[![znc](http://wiki.znc.in/resources/assets/wiki.png)](http://wiki.znc.in/ZNC)
44+
[![znc](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/znc-logo.png)](http://wiki.znc.in/ZNC)
4545

4646
## Supported Architectures
4747

@@ -275,6 +275,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
275275

276276
## Versions
277277

278+
* **10.06.24:** - Migrate default config file to newer format.
278279
* **06.06.24:** - Rebase to Alpine 3.20.
279280
* **26.03.24:** - Switch back to multi-threaded builds and ignore `-beta` and `-alpha` tags as well as `-rc`.
280281
* **22.02.24:** - Update build system for v1.9.0 (use cmake).

readme-vars.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
# project information
44
project_name: znc
55
project_url: "http://wiki.znc.in/ZNC"
6-
project_logo: "http://wiki.znc.in/resources/assets/wiki.png"
6+
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/znc-logo.png"
77
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
99
project_blurb_optional_extras_enabled: false
10+
1011
# supported architectures
1112
available_architectures:
1213
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
@@ -21,6 +22,11 @@ param_volumes:
2122
param_usage_include_ports: true
2223
param_ports:
2324
- {external_port: "6501", internal_port: "6501", port_desc: "Port ZNC listens on."}
25+
26+
readonly_supported: true
27+
readonly_message: |
28+
* Not supported when running with SSL (Further debuging into why is appreciated)
29+
2430
# application setup block
2531
app_setup_block_enabled: true
2632
app_setup_block: |
@@ -29,8 +35,10 @@ app_setup_block: |
2935
* Default User: admin
3036
* Default Password: admin
3137
`change password ASAP.`
38+
3239
# changelog
3340
changelogs:
41+
- {date: "10.06.24:", desc: "Migrate default config file to newer format."}
3442
- {date: "06.06.24:", desc: "Rebase to Alpine 3.20."}
3543
- {date: "26.03.24:", desc: "Switch back to multi-threaded builds and ignore `-beta` and `-alpha` tags as well as `-rc`."}
3644
- {date: "22.02.24:", desc: "Update build system for v1.9.0 (use cmake)."}

root/defaults/znc.conf

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,25 @@
66
// Altering this file by hand will forfeit all support.
77
//
88
// But if you feel risky, you might want to read help on /znc saveconfig and /znc rehash.
9-
// Also check http://en.znc.in/wiki/Configuration
9+
// Also check https://wiki.znc.in/Configuration
10+
LoadModule = webadmin
11+
LoadModule = corecaps
12+
Version = 1.9.1
1013

11-
Version = 1.7.x
12-
<Listener l>
13-
Port = 6501
14-
IPv4 = true
15-
IPv6 = false
16-
SSL = false
14+
<Listener listener0>
15+
AllowIRC = true
16+
AllowWeb = true
17+
IPv4 = true
18+
IPv6 = false
19+
Port = 6501
20+
SSL = false
21+
URIPrefix = /
1722
</Listener>
18-
LoadModule = webadmin
1923

2024
<User admin>
21-
Pass = sha256#b83fb77b88fede3a01f5a92b2124f3008227828b4b0b6daf389404f68461aa90#X?0DsLk6eUajI4o1.39T#
22-
Admin = true
23-
Nick = admin
24-
AltNick = admin_
25-
Ident = admin
26-
RealName = Got ZNC?
27-
LoadModule = chansaver
28-
LoadModule = controlpanel
25+
Admin = true
26+
<Pass password>
27+
Hash = $argon2id$v=19$m=6144,t=6,p=1$STQuTiFGL0ppS3csbTlObmNvTjs$Dyxs/jw6aR7+ye+4N0K8sEq6uKEYy8GRaKmsTxoLCwQ
28+
Method = Argon2id
29+
</Pass>
2930
</User>
30-
31-

0 commit comments

Comments
 (0)