From Fedora Project Wiki

Line 10: Line 10:
==Apache==
==Apache==


==== Introducing ====
====Version====
Fedora can be used as great web-server, based on Apache, which included in distributive.
'''httpd''' was updated from 2.2.14 to 2.2.16.
 
This version includes only ''mod'' and ''security'' fixes.
 
For more information see [http://www.apache.org/dist/httpd/CHANGES_2.2]
==== Before starting ====
Before starting httpd, you should accept all input connections to http port in iptables. Usually it's 80.
<pre>iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT</pre>
eth0 - is your ethernet device.
 
After that, see chain INPUT in iptables - insert
<pre>iptables -L</pre>
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:
<pre>#httpd -k start</pre>
 
If you want to restart or stop httpd, use the following commands:
<pre>#httpd -k restart
#httpd -k stop</pre>


[[Category:Docs Project]]
[[Category:Docs Project]]
[[Category:Draft documentation]]
[[Category:Draft documentation]]
[[Category:Documentation beats]]
[[Category:Documentation beats]]

Revision as of 07:34, 17 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. Improvements include better scalability and a new log function.

The main changes you can read here

Apache

Version

httpd was updated from 2.2.14 to 2.2.16. This version includes only mod and security fixes. For more information see [1]