From Fedora Project Wiki

Line 6: Line 6:
Varnish was updated to 2.1.3.
Varnish was updated to 2.1.3.


The main changes are:
The main changes you can read [http://www.varnish-cache.org/wiki/WikiStart#a2010-07-28Varnish2.1.3Released  here]
    * The scalability of critbit, the default hashing method, has been improved
    * A bug in varnishd would in some cases confuse varnishncsa leading to lost or wrong log lines.
    * Some bugs in the handling of Range requests has been fixed. This only matters if you enable Range support.
    * Add «log» command to VCL which will log to the Varnish log.


==Apache==
==Apache==

Revision as of 06:13, 11 August 2010

DocsProject Header docTeam1.png
Note.png
Beat is open
This beat is now ready to have Fedora 25 content added by the beat writer


Varnish

Varnish was updated to 2.1.3.

The main changes you can read here

Apache

Introducing

Fedora can be used as great web-server, based on Apache, which included in distributive.


Before starting

Before starting httpd, you should accept all input connections to http port in iptables. Usually it's 80.

iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT

eth0 - is your ethernet device.

After that, see chain INPUT in iptables - insert

iptables -L

If you can see changes - everything is ok.

Configuring httpd.conf

First of all, you should configure your httpd. The configuration file you can found in /etc/httpd/conf/httpd.conf


Starting httpd

You can start httpd by:

#httpd -k start

If you want to restart or stop httpd, use the following commands:

#httpd -k restart
#httpd -k stop