diff --git a/website/index.html b/website/index.html index 972e6f9..a12b27c 100644 --- a/website/index.html +++ b/website/index.html @@ -112,123 +112,151 @@
Hide common non-video websites from the target selector.
-Automatically sync transitions between series episodes.
-• Username helps others identify you.Benutzername hilft anderen, dich zu erkennen.
+• Noise filtering hides common non-video sites.Noise-Filterung blendet allgemeine Seiten aus.
+version: "3.8"
-
-services:
- koalasync:
+ services:
+ koala-sync:
image: ghcr.io/shik3i/koalasync:latest
- container_name: koalasync-relay
- ports:
- - "3000:3000"
- environment:
- - NODE_ENV=production
- - PORT=3000
+ container_name: KoalaSync
restart: always
- logging:
- driver: "json-file"
- options:
- max-size: "10m"
+ # Access internally by proxying to container port 3000
+ environment:
+ - TZ=Europe/Berlin
+ - PORT=3000
+ - MIN_VERSION=1.0.0
+ - MAX_ROOMS=100
+ - MAX_PEERS_PER_ROOM=50
+ pids_limit: 2048
# Reverse proxy for your secure WebSocket relay server
-sync.yourdomain.com {
- reverse_proxy localhost:3000
+ sync.koalastuff.net {
+ # Specify the web root inside the container
+ root * /var/www/html
- header {
- # Security policies
- Permissions-Policy "interest-cohort=()"
- Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
- X-Content-Type-Options "nosniff"
- X-Frame-Options "DENY"
- }
+ # Enable static file server to deliver HTML, CSS, JS
+ file_server
+}
+
+syncserver.koalastuff.net {
+ reverse_proxy KoalaSync:3000
}