Last active
January 17, 2026 10:28
-
-
Save raku-cat/47a90268b65277297f0be11c37d9309a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Coturn TURN/STUN server | |
| PartOf=neko-host.pod | |
| [Container] | |
| Pod=neko-host.pod | |
| Network=host | |
| Image=ghcr.io/coturn/coturn:latest | |
| Exec=-n --realm=localhost --fingerprint --listening-ip=0.0.0.0 --external-ip=192.168.1.10 --listening-port=3478 --min-port=49160 --max-port=49200 --log-file=stdout --user=neko:neko --lt-cred-mech | |
| [Service] | |
| Restart=always | |
| [Install] | |
| WantedBy=default.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Neko Browser (NVIDIA Firefox) | |
| PartOf=neko-host.pod | |
| [Container] | |
| Pod=neko-host.pod | |
| Image=ghcr.io/m1k1o/neko/nvidia-firefox:latest | |
| ShmSize=2g | |
| AddDevice=nvidia.com/gpu=all | |
| EnvironmentFile=/etc/containers/systemd/neko-app.env | |
| [Service] | |
| Restart=always | |
| [Install] | |
| WantedBy=default.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NEKO_CAPTURE_VIDEO_PIPELINE=ximagesrc display-name={display} show-pointer=true use-damage=false ! cudaupload ! cudaconvert ! queue ! video/x-raw(memory:CUDAMemory),format=NV12 ! nvh264enc name=encoder preset=default gop-size=25 spatial-aq=true temporal-aq=true bitrate=4096 vbv-buffer-size=4096 rc-mode=cbr ! h264parse config-interval=-1 ! video/x-h264,stream-format=byte-stream ! appsink name=appsink | |
| NEKO_CAPTURE_VIDEO_CODEC=h264 | |
| NEKO_CAPTURE_BROADCAST_PIPELINE=flvmux name=mux ! rtmpsink location={url} pulsesrc device={device} ! audio/x-raw,channels=2 ! audioconvert ! voaacenc ! mux. ximagesrc display-name={display} show-pointer=false use-damage=false ! video/x-raw,framerate=30/1 ! videoconvert ! queue ! video/x-raw,format=NV12 ! nvh264enc name=encoder preset=low-latency-hq gop-size=25 spatial-aq=true temporal-aq=true bitrate=2800 vbv-buffer-size=2800 rc-mode=cbr ! h264parse config-interval=-1 ! video/x-h264,stream-format=byte-stream,profile=high ! h264parse ! mux. | |
| NEKO_DESKTOP_SCREEN=1280x720@60 | |
| NEKO_MEMBER_PROVIDER=multiuser | |
| NEKO_MEMBER_MULTIUSER_USER_PASSWORD=neko | |
| NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD=secret | |
| NEKO_WEBRTC_EPR=52000-52100 | |
| NEKO_WEBRTC_ICELITE=0 | |
| NEKO_SERVER_PROXY=true | |
| NEKO_WEBRTC_ICESERVERS_FRONTEND=[{"urls": ["turn:192.168.1.10:3478"], "username": "neko", "credential": "neko"},{"urls": ["stun:stun.cloudflare.com:3478"]}] | |
| TZ=America/Chicago | |
| NEKO_DEBUG=1 | |
| GST_DEBUG=3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment