You've already forked crontab-ui
mirror of
https://github.com/alseambusher/crontab-ui.git
synced 2025-12-15 11:43:58 +08:00
620 B
620 B
Hosting
Install nginx on your server. Then edit the configuration to map port 80 (or any other port) to 8000
sudo vi /etc/nginx/sites-available/default
Change it to this
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8000;
}
}
##Authentication
You can enable basic http authentication with user name and password on nginx to prevent unauthorized users from accessing your cronjobs. Refer this.