Tag Archives: kulish

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 {
root /usr/share/nginx/www;
}

location / {
try_files $uri $uri/ @observium;
}

location @observium {
rewrite ^(.+)$ /index.php/$1/ last;
}

}

# General php settings
include php.conf;

# We need to exclude robots.txt specifically
include drop.conf;

Apache to Nginx Migration





Status update of the web engine migration.
All items are pending further testing.

Tech.kulish.com
Fully functional (including links to other/outside domains)

TECH.kulish.com Migration

As you may have noticed, the site has migrated from Drupal to WordPress.

Please bear with us while we finish implementing all the features of the old site.

Thank You.

Drupal Issue

We are currently experiencing an issue with editing account information.
The problem is being researched and status will be provided when information is available.

The following sites are affected:

http://tech.kulish.com

http://family.kulish.com

http://www.iowajeep.net

http://www.racebus.org

Kulish Digital Hub