⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mini_httpd_wrapper

📁 一个小型 web服务器
💻
字号:
#!/bin/sh## mini_httpd_wrapper - wrapper script for mini_httpd on FreeBSD## This goes in /usr/local/sbin.  It runs mini_httpd in a loop.  If mini_httpd# exits then the script restarts it automatically.## The -D flag tells mini_httpd to *not* put itself into the background,# and the -C flag tells it to get the rest of its configuration from# the specified config file.while true ; do    /usr/local/sbin/mini_httpd -D -C /usr/local/www/mini_httpd_config    if [ -f /var/run/nologin ] ; then	exit    fi    sleep 10    egrep ' mini_httpd\[' /var/log/messages |      tail -33 |      mail -s "mini_httpd on `hostname` restarted" rootdone

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -