Apparently 2 out of 3 of our GPS clocks were being used in a spoof/DDOS attack. The basic premise is that time requests are sent to the service with a spoofed IP for the response. Add in 100/1000/10000 clocks send results to a server/service that did not request them results […]
Tag: kulish
Kulish.com Email Services Termination
nginx+observium configuration
Update to index.php in observium to work with nginx. Change from: $_SERVER[‘PATH_INFO’] = (isset($_SERVER[‘PATH_INFO’]) ? $_SERVER[‘PATH_INFO’] : $_SERVER[‘ORIG_PATH_INFO’]); Change to: $_SERVER[‘PATH_INFO’] = $_SERVER[‘REQUEST_URI’]; nginx site configuration: server { listen 80; server_name hostname.kulish.com; access_log /var/log/nginx/hostname.kulish.com.acc.log; error_log /var/log/nginx/hostname.kulish.com.err.log; root /www/observium/html; index index.php; error_page 500 502 503 504 /50x.html; location = /50x.html { […]