From Fedora Project Wiki

No edit summary
(36 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{header|docs}}
{{header|docs}}{{Docs_beat_closed}}
{{Docs_beat_open}}
 
==Varnish==
 
Varnish was updated to 2.1.3.
The main changes are:
    * 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==
 
==== 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.
<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 05:23, 9 September 2015

DocsProject Header docTeam1.png
Warning.png
Beat Closed on Wiki
Work on beats has now moved to git at https://pagure.io/fedora-docs/release-notes. If you have changes or additions, please contact the docs team via #fedora-docs, docs@lists.fedoraproject.org, or with the release-notes BZ component.