The new doc site has launched, and all docs have new URLs. This PR updates the documentation URLs in the Console to point to the new locations.
31 lines
702 B
Desktop File
31 lines
702 B
Desktop File
[Unit]
|
|
Description=MinIO Console
|
|
Documentation=https://min.io/docs/minio/linux/index.html
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
AssertFileIsExecutable=/usr/local/bin/console
|
|
|
|
[Service]
|
|
WorkingDirectory=/usr/local/
|
|
|
|
User=console-user
|
|
Group=console-user
|
|
|
|
EnvironmentFile=/etc/default/minio-console
|
|
|
|
ExecStart=/usr/local/bin/console server $CONSOLE_OPTS
|
|
|
|
# Let systemd restart this service always
|
|
Restart=always
|
|
StartLimitBurst=2
|
|
StartLimitInterval=5
|
|
|
|
# Specifies the maximum file descriptor number that can be opened by this process
|
|
LimitNOFILE=65536
|
|
|
|
# Disable timeout logic and wait until process is stopped
|
|
TimeoutStopSec=infinity
|
|
SendSIGKILL=no
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |