<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>postIt &#187; Apache</title>
	<atom:link href="https://lakm.us/postit/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>https://lakm.us/postit</link>
	<description>Post-It sticky notes with PasteBin sense</description>
	<lastBuildDate>Thu, 02 Jan 2025 01:33:57 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0.18</generator>
	<item>
		<title>Check apache2 enabled modules:


$ su &#8230;</title>
		<link>https://lakm.us/postit/2013/02/check-apache2-enabled-modules-su/</link>
		<comments>https://lakm.us/postit/2013/02/check-apache2-enabled-modules-su/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 10:31:19 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://lakm.us/postit/2013/02/check-apache2-enabled-modules-su/</guid>
		<description><![CDATA[Check apache2 enabled modules: $ sudo apache2ctl -M Loaded Modules: core_module &#40;static&#41; log_config_module &#40;static&#41; logio_module &#40;static&#41; mpm_prefork_module &#40;static&#41; ... mod_rewrite (rewrite_module usually manipulated in .htaccess) and ssl (for HTTPS) for examples aren&#8217;t enabled by default in Ubuntu&#8217; installation of apache2. Enable one or more of them via: $ sudo a2enmod]]></description>
				<content:encoded><![CDATA[<p>Check <code>apache2</code> enabled modules:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apache2ctl</span> <span style="color: #660033;">-M</span>
Loaded Modules:
 core_module <span style="color: #7a0874; font-weight: bold;">&#40;</span>static<span style="color: #7a0874; font-weight: bold;">&#41;</span>
 log_config_module <span style="color: #7a0874; font-weight: bold;">&#40;</span>static<span style="color: #7a0874; font-weight: bold;">&#41;</span>
 logio_module <span style="color: #7a0874; font-weight: bold;">&#40;</span>static<span style="color: #7a0874; font-weight: bold;">&#41;</span>
 mpm_prefork_module <span style="color: #7a0874; font-weight: bold;">&#40;</span>static<span style="color: #7a0874; font-weight: bold;">&#41;</span>
 ...</pre></td></tr></table></div>

<p><code>mod_rewrite</code> (<code>rewrite_module</code> usually manipulated in <code>.htaccess</code>) and <code>ssl</code> (for HTTPS) for examples aren&#8217;t enabled by default in Ubuntu&#8217; installation of <code>apache2</code>.</p>
<p>Enable one or more of them via:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666;">$ </span><span style="color: #c20cb9; font-weight: bold;">sudo</span> a2enmod</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2013/02/check-apache2-enabled-modules-su/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling mod_rewrite in Apache:

$ sud &#8230;</title>
		<link>https://lakm.us/postit/2010/05/enabling-mod_rewrite-in-apache-sud/</link>
		<comments>https://lakm.us/postit/2010/05/enabling-mod_rewrite-in-apache-sud/#comments</comments>
		<pubDate>Thu, 06 May 2010 02:59:23 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[config]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=90</guid>
		<description><![CDATA[Enabling mod_rewrite in Apache: $ sudo cp /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/ and restart Apache. This also may need editing /etc/apache2/sites-available/default to AllowOverride all: &#60;virtualHost *:80&#62; ServerAdmin webmaster@localhost &#160; DocumentRoot /var/www &#60;directory /&#62; Options FollowSymLinks AllowOverride all]]></description>
				<content:encoded><![CDATA[<p>Enabling <code>mod_rewrite<code> in Apache:</p>
<p><code>$ sudo cp /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/</code></p>
<p>and restart Apache. This also may need editing <code>/etc/apache2/sites-available/default</code> to <code>AllowOverride all</code>:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;</span>virtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">80</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        ServerAdmin webmaster<span style="color: #000000; font-weight: bold;">@</span>localhost
&nbsp;
        DocumentRoot <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www
        <span style="color: #000000; font-weight: bold;">&lt;</span>directory <span style="color: #000000; font-weight: bold;">/&gt;</span>
                Options FollowSymLinks
                AllowOverride all</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/05/enabling-mod_rewrite-in-apache-sud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
