diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/.htaccess | 1 | ||||
-rw-r--r-- | conf/esm.config.json | 65 |
2 files changed, 66 insertions, 0 deletions
diff --git a/conf/.htaccess b/conf/.htaccess new file mode 100644 index 0000000..3418e55 --- /dev/null +++ b/conf/.htaccess @@ -0,0 +1 @@ +deny from all
\ No newline at end of file diff --git a/conf/esm.config.json b/conf/esm.config.json new file mode 100644 index 0000000..64b2af2 --- /dev/null +++ b/conf/esm.config.json @@ -0,0 +1,65 @@ +{ + "esm": { + "version": "2.5", + "website": "http://www.ezservermonitor.com", + "check_updates": true, + "auto_refresh": 0 + }, + "cpu": { + "enable_temperature": true + }, + "disk": { + "show_tmpfs": false + }, + "ping": { + "hosts": [ + "facebook.com", + "google.com", + "yahoo.com" + ] + }, + "last_login": { + "max": 5 + }, + "services": { + "show_port": true, + "list": [ + { + "name": "Web Server", + "host": "localhost", + "port": 80, + "protocol": "tcp" + }, + { + "name": "Email Server (incoming)", + "host": "localhost", + "port": 993, + "protocol": "tcp" + }, + { + "name": "Email Server (outgoing)", + "host": "localhost", + "port": 587, + "protocol": "tcp" + }, + { + "name": "FTP Server", + "host": "localhost", + "port": 21, + "protocol": "tcp" + }, + { + "name": "Database Server", + "host": "localhost", + "port": 3306, + "protocol": "tcp" + }, + { + "name": "SSH", + "host": "localhost", + "port": 22, + "protocol": "tcp" + } + ] + } +} |