mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-09-10 20:26:19 +00:00
13 lines
165 B
Bash
13 lines
165 B
Bash
#!/bin/sh
|
|
|
|
# Run sshd
|
|
/usr/sbin/sshd
|
|
|
|
# Start nginx in the background
|
|
nginx
|
|
|
|
# Start fail2ban
|
|
## fail2ban-client -x start
|
|
|
|
# Run x-ui as main process
|
|
exec /app/x-ui
|