Skip to content

Commit

Permalink
Merge pull request #52 from linuxserver/update-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Roxedus authored Jul 10, 2024
2 parents 4d0ef2d + df3cc54 commit 741194b
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

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

# package version
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

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

# package version
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Find us at:

[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.

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

## Supported Architectures

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

## Versions

* **10.06.24:** - Migrate default config file to newer format.
* **06.06.24:** - Rebase to Alpine 3.20.
* **26.03.24:** - Switch back to multi-threaded builds and ignore `-beta` and `-alpha` tags as well as `-rc`.
* **22.02.24:** - Update build system for v1.9.0 (use cmake).
Expand Down
10 changes: 9 additions & 1 deletion readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
# project information
project_name: znc
project_url: "http://wiki.znc.in/ZNC"
project_logo: "http://wiki.znc.in/resources/assets/wiki.png"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/znc-logo.png"
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."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
project_blurb_optional_extras_enabled: false

# supported architectures
available_architectures:
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
Expand All @@ -21,6 +22,11 @@ param_volumes:
param_usage_include_ports: true
param_ports:
- {external_port: "6501", internal_port: "6501", port_desc: "Port ZNC listens on."}

readonly_supported: true
readonly_message: |
* Not supported when running with SSL (Further debuging into why is appreciated)
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Expand All @@ -29,8 +35,10 @@ app_setup_block: |
* Default User: admin
* Default Password: admin
`change password ASAP.`
# changelog
changelogs:
- {date: "10.06.24:", desc: "Migrate default config file to newer format."}
- {date: "06.06.24:", desc: "Rebase to Alpine 3.20."}
- {date: "26.03.24:", desc: "Switch back to multi-threaded builds and ignore `-beta` and `-alpha` tags as well as `-rc`."}
- {date: "22.02.24:", desc: "Update build system for v1.9.0 (use cmake)."}
Expand Down
35 changes: 17 additions & 18 deletions root/defaults/znc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,25 @@
// Altering this file by hand will forfeit all support.
//
// But if you feel risky, you might want to read help on /znc saveconfig and /znc rehash.
// Also check http://en.znc.in/wiki/Configuration
// Also check https://wiki.znc.in/Configuration
LoadModule = webadmin
LoadModule = corecaps
Version = 1.9.1

Version = 1.7.x
<Listener l>
Port = 6501
IPv4 = true
IPv6 = false
SSL = false
<Listener listener0>
AllowIRC = true
AllowWeb = true
IPv4 = true
IPv6 = false
Port = 6501
SSL = false
URIPrefix = /
</Listener>
LoadModule = webadmin

<User admin>
Pass = sha256#b83fb77b88fede3a01f5a92b2124f3008227828b4b0b6daf389404f68461aa90#X?0DsLk6eUajI4o1.39T#
Admin = true
Nick = admin
AltNick = admin_
Ident = admin
RealName = Got ZNC?
LoadModule = chansaver
LoadModule = controlpanel
Admin = true
<Pass password>
Hash = $argon2id$v=19$m=6144,t=6,p=1$STQuTiFGL0ppS3csbTlObmNvTjs$Dyxs/jw6aR7+ye+4N0K8sEq6uKEYy8GRaKmsTxoLCwQ
Method = Argon2id
</Pass>
</User>


0 comments on commit 741194b

Please sign in to comment.