mirror of
https://github.com/sol1/rustguac.git
synced 2026-09-10 09:35:45 +00:00
07ebb33702
- Onboarding wizard for new users (was missing from v0.8.1-v0.9.0) - Settings menu label visibility improvement - EnvironmentFile=-/opt/rustguac/env in systemd service - russh 0.57→0.58.1 (drops vulnerable libcrux-sha3) - aws-lc-sys 0.38→0.39 (RUSTSEC-2026-0044, 0048) - rustls-webpki 0.103.9→0.103.10 (RUSTSEC-2026-0049) - Removed RUSTSEC-2026-0074 ignore (no longer needed)
18 lines
399 B
Desktop File
18 lines
399 B
Desktop File
[Unit]
|
|
Description=rustguac web session proxy
|
|
After=network.target rustguac-guacd.service
|
|
Requires=rustguac-guacd.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=rustguac
|
|
WorkingDirectory=/opt/rustguac
|
|
ExecStart=/opt/rustguac/bin/rustguac --config /opt/rustguac/config.toml serve
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
Environment=RUST_LOG=info
|
|
EnvironmentFile=-/opt/rustguac/env
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|