Archive for May 13th, 2010

The Ascension of Jesus Christ celebration in the Bulgarian Orthodox Church

Thursday, May 13th, 2010

The Ascension of Christ Orthodox Icon

At this day in Bulgarian Orthodox Church as well as the other Orthodox Churches around the world we celebrate the Ascension of Christ
This day is celebrated 40 days after Pascha or as also called (Eastern).
On that day 40 days after his glorious resurrection the Lord Jesus Christ has ascended and sat on the right hand of God. As the gospels testify.
Here in Bulgaria it’s a widely popular superstition for that feast.
Many people belief on that date the dead who are in heaven or hell are loosed from their either bliss in heaven or torture in hell and they can freely come very close to those who are living.
Of course all this is just mythology and doesn’t have to do nothing with the true Orthodox Christian Church belief. This superstition has left as a false belief which entered the people’s belief as a consequence from the Bogomils heresy teachings.
It’s a well known fact that at a certain period in time Bogomils sect who were characterized with rejection of all earthly things (human body, nature, food etc.) as corrupt and unggodly.
Though the general heretical teachings has been devastated and the truth by God himself with time, some of their false beliefs kept growing among the unacquainted population until this day.
On this day in Bulgaria we also have the tradition to colour chichen eggs in red just like on Eastern.
The reasons for the eggs colouring aren’t completely certain though I’ve heard from a friend this is being done as a symbol that the 40 days until the ascension has passed and it’s the end of the great days of the Lord who has been on earth in flesh 40 days after his resurrection, just like on Eastern we colour the eggs as a symbol for the resurrection.
On this day there is a tradition in Bulgaria that most people go and visit the graves of their departured beloved ones to show honour for their earthly living and remember about their live, though again this is not really a teaching of the Church but rather a human addition to what the Orthodox Church teaches.
The day of the Holy Ascension of the Lord Jesus Christ is also called All Soul’s day since all soulds are to be resurrected and be judged by God in the last day as God tought us through the teachings in the Holy Bible and his Orthodox Church.
There is a practice among some people in the Church to great themselves with “Christ has Ascended!” instead of “Hello” and on the other side the man has to answer to the greating “Truly he has Ascended!”.
It’s a really interesting recurring miracle in a near place to Obrochishte called “The Ascension of the Lord” their is a spring there that springs out water each year only on for the feast “The Ascension of the Lord” in the rest time of the year the spring is dry.
That’s a real miracle that testifies for the ascension of Christ people know that miracle recurring for many, many years.

How to enable HTTP gzip Compression on CentOS 5.x to speed up Apache Webserver

Thursday, May 13th, 2010

It’s a wide known fact that the so called HTTP Compression provided by mod_gzip module in Apache 1.x and by the mod_deflate module on Apache 2.x saves up a lot of internet traffic by compressing the transferred data in between the client -> server interaction.
Nowadays almost 98% or 99% of the browsers on the net perfectly support the mod_gzip file compression.
Therefore enabling the http gzip compression is a must have module in every serious webserver out there which is targetting better performance and improved interaction in terms of speed between the client / server interaction.
In that manner of thought I recently had to enable the mod_deflate on CentOS release 5.4 with Apache webserver version httpd-2.2.3-31.

Here is an uname output to be more specific about the kernel release on which the Webserver is running:

Linux centos 2.6.18-128.7.1.el5 #1 SMP Mon Aug 24 08:21:56 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux

CentOS’s Apache webserver comes with enabled by default deflate Apache module.
Thus all necessery to be done in order to enable the http compression is to simply create the file and paste in it:
# Insert filter
SetOutputFilter DEFLATE

# Netscape 4.x has some problems…
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch bMSIE !no-gzip !gzip-only-text/html

# Don’t compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

# Don’t compress already compressed stuff !
SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI .pdf$ no-gzip dont-vary

# Make sure proxies don’t deliver the wrong content
Header append Vary User-Agent env=!dont-vary

# Log Stuff !
# DeflateFilterNote Input input_info
# DeflateFilterNote Output output_info
# DeflateFilterNote Ratio ratio_info
# LogFormat ‘”%r” %{output_info}n/%{input_info}n (%{ratio_info}n%%)’ deflate
# CustomLog /var/log/httpd/deflate_log deflate

I used the article HTTP Compression on Redhat / CentOS / Fedora to create this one, so thanks to the author of the up mentioned article.