Archived
2
0

NEKO_ADMIN -> NEKO_PASSWORD_ADMIN

This commit is contained in:
m1k1o 2020-04-05 10:58:52 +02:00
parent 6de731b9bb
commit 435ec8d0f6
4 changed files with 9 additions and 9 deletions

View File

@ -68,7 +68,7 @@ COPY server/bin/neko /usr/bin/neko
# #
# neko env # neko env
ENV NEKO_PASSWORD=neko ENV NEKO_PASSWORD=neko
ENV NEKO_ADMIN=admin ENV NEKO_PASSWORD_ADMIN=admin
ENV NEKO_BIND=:8080 ENV NEKO_BIND=:8080
# #

View File

@ -2,9 +2,9 @@
## Docker Basic Configuration ## Docker Basic Configuration
``` ```
NEKO_PASSWORD=neko // Password NEKO_PASSWORD=neko // Password
NEKO_ADMIN=neko // Admin Password NEKO_PASSWORD_ADMIN=admin // Admin Password
NEKO_BIND=0.0.0.0:8080 // Bind NEKO_BIND=0.0.0.0:8080 // Bind
NEKO_KEY= // (SSL) Key, needed for clipboard sync NEKO_KEY= // (SSL) Key, needed for clipboard sync
NEKO_CERT= // (SSL) Cert, needed for clipboard sync NEKO_CERT= // (SSL) Cert, needed for clipboard sync
``` ```

View File

@ -3,13 +3,13 @@
## Running: ## Running:
### Chromium container: ### Chromium container:
``` ```
sudo docker run -p 80:8080 -p 59000-59100:59000-59100/udp -e NEKO_PASSWORD='secret' -e NEKO_ADMIN='secret' --cap-add SYS_ADMIN --shm-size=1gb nurdism/neko:chromium sudo docker run -p 80:8080 -p 59000-59100:59000-59100/udp -e NEKO_PASSWORD='secret' -e NEKO_PASSWORD_ADMIN='secret' --cap-add SYS_ADMIN --shm-size=1gb nurdism/neko:chromium
``` ```
*Note:* `--cap-add SYS_ADMIN` & `--shm-size=1gb` is required for chromium to run properly *Note:* `--cap-add SYS_ADMIN` & `--shm-size=1gb` is required for chromium to run properly
---- ----
### Firefox container: ### Firefox container:
``` ```
sudo docker run -p 8080:8080 -p 59000-59100:59000-59100/udp -e NEKO_PASSWORD='secret' -e NEKO_ADMIN='secret' --shm-size=1gb nurdism/neko:firefox sudo docker run -p 8080:8080 -p 59000-59100:59000-59100/udp -e NEKO_PASSWORD='secret' -e NEKO_PASSWORD_ADMIN='secret' --shm-size=1gb nurdism/neko:firefox
``` ```
*Note:* `--shm-size=1gb` is required for firefox, tabs will crash otherwise *Note:* `--shm-size=1gb` is required for firefox, tabs will crash otherwise

View File

@ -24,7 +24,7 @@ Server for n.eko, as of right now this will *only* work on Linux systems, only t
--pcmu // (bool) use PCMU audio codec --pcmu // (bool) use PCMU audio codec
--pcma // (bool) use PCMA audio codec --pcma // (bool) use PCMA audio codec
--password "neko" // (string) password for connecting to stream --password "neko" // (string) password for connecting to stream
--admin "admin" // (string) admin password for connecting to stream --password_admin "admin" // (string) admin password for connecting to stream
``` ```
Config can be set via environment variables with the prefix `NEKO_` (I.E. NEKO_BIND="127.0.0.1:8080") Config can be set via environment variables with the prefix `NEKO_` (I.E. NEKO_BIND="127.0.0.1:8080")