<?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>Gentoo Blog &#187; confixx/Plesk</title>
	<atom:link href="http://gentoo-blog.de/category/confixx-plesk/feed/" rel="self" type="application/rss+xml" />
	<link>http://gentoo-blog.de</link>
	<description>The ultimate Gentoo Blog</description>
	<lastBuildDate>Sun, 25 Dec 2011 10:48:06 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Activate Webdav in Plesk</title>
		<link>http://gentoo-blog.de/confixx-plesk/activate-webdav-in-plesk/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/activate-webdav-in-plesk/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 09:57:58 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6311</guid>
		<description><![CDATA[The Plesk interface does not support the webdav protocol. But Apache does support webdav. Webdav can be used as an iDisk under MacOS X. Webdav can also be used with Linux or Windows. Here are the steps to get webdav up and running. These instructions should work on Debian based system. But similar commands should [...]]]></description>
			<content:encoded><![CDATA[<p>The Plesk interface does not support the webdav protocol. But Apache does support webdav. Webdav can be used as an iDisk under MacOS X. Webdav can also be used with Linux or Windows. Here are the steps to get webdav up and running. These instructions should work on Debian based system. But similar commands should work with all major Linux distributions:</p>
<p>First activate the webdav Apache modules and restart apache:</p>
<p><code>a2enmod dav<br />
a2enmod dav_fs<br />
service apache2 restart</code></p>
<p>Then create a vhost config for the domain you are using adding webdav. Please replace domain.tld with you domain. And check the directory line:</p>
<p><code>vi /var/www/vhosts/domain.tld/conf/vhost.conf</p>
<p>&lt;Directory /var/www/vhosts/domain.tld/httpdocs&gt;<br />
    DAV on<br />
&lt;/Directory&gt;</code></p>
<p>To get Plesk to include our custom configuration we must reconfigure the domain with the httpdmng.</p>
<p><code> /usr/local/psa/admin/sbin/httpdmng --reconfigure-domain domain.tld</code></p>
<p>This will make Plesk include the file vhost.conf in our Apache configuration adding the webdav directive.</p>
<p>You should be able to connect to the web share (webdav) now. Using the user name and password of the domain user in Plesk. You can either use the MacOS X finder (connect to server). Or you can also connect through most Linux desktops using Nautilus for example. If you experience any problems writing  to the share. You may need to change the permissions on the folder so that the Apache user has write permissions:</p>
<p><code>chown -R www-data:www-data /var/www/vhosts/domain.tld/httpdocs/</code></p>
<p>Thats it you have created your own web share. </p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Factivate-webdav-in-plesk%2F&amp;t=Activate%20Webdav%20in%20Plesk" id="facebook_share_link_6311">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6311') || document.getElementById('facebook_share_icon_6311') || document.getElementById('facebook_share_both_6311') || document.getElementById('facebook_share_button_6311');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6311') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/activate-webdav-in-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk Change PHP Admin Values and Rebuild Vhost Config</title>
		<link>http://gentoo-blog.de/confixx-plesk/plesk-change-php-admin-values-and-rebuild-vhost-config/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/plesk-change-php-admin-values-and-rebuild-vhost-config/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:11:46 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6211</guid>
		<description><![CDATA[Create a file called &#8220;vhost.conf&#8221;  in the directory &#8220;/var/www/vhosts/example.com/conf/&#8221;
&#60;Directory /var/www/vhosts/example.com/httpdocs&#62;
php_admin_value safe_mode off
php_admin_flag register_globals on
&#60;/Directory&#62;
Rebuild the domain config for the particular vhost with:
/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com
Or rebuild all vhosts if you changed more than one with:
/usr/local/psa/admin/sbin/httpdmng --reconfigure-all
You can also change other settings this way here are some examples:
php_admin_value post_max_size 20M
php_admin_value upload_max_filesize 20M
php_admin_value open_basedir none
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>Create a file called &#8220;vhost.conf&#8221;  in the directory &#8220;/var/www/vhosts/example.com/conf/&#8221;</p>
<p><code>&lt;Directory /var/www/vhosts/example.com/httpdocs&gt;<br />
php_admin_value safe_mode off<br />
php_admin_flag register_globals on<br />
&lt;/Directory&gt;</code></p>
<p>Rebuild the domain config for the particular vhost with:</p>
<p><code>/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com</code></p>
<p>Or rebuild all vhosts if you changed more than one with:</p>
<p><code>/usr/local/psa/admin/sbin/httpdmng --reconfigure-all</code></p>
<p>You can also change other settings this way here are some examples:</p>
<p><code>php_admin_value post_max_size 20M<br />
php_admin_value upload_max_filesize 20M<br />
php_admin_value open_basedir none</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fplesk-change-php-admin-values-and-rebuild-vhost-config%2F&amp;t=Plesk%20Change%20PHP%20Admin%20Values%20and%20Rebuild%20Vhost%20Config" id="facebook_share_link_6211">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6211') || document.getElementById('facebook_share_icon_6211') || document.getElementById('facebook_share_both_6211') || document.getElementById('facebook_share_button_6211');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6211') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/plesk-change-php-admin-values-and-rebuild-vhost-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk panel 404 /relay after upgrade</title>
		<link>http://gentoo-blog.de/confixx-plesk/plesk-panel-404-relay-after-upgrade/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/plesk-panel-404-relay-after-upgrade/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:34:08 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6151</guid>
		<description><![CDATA[After upgrading a plesk install yesterday. From 10.1 to 10.3.1 the admin panel started redirecting me from myserver.com:8443 to myserver.com:8443/relay. Which resulted in a 404 error with no plesk panel. During the upgrade plesk must have activated the sso component which stopped the webinterface from working. To fix this issue do the following:
/usr/local/psa/bin/sso --disable
Share on [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading a plesk install yesterday. From 10.1 to 10.3.1 the admin panel started redirecting me from myserver.com:8443 to myserver.com:8443/relay. Which resulted in a 404 error with no plesk panel. During the upgrade plesk must have activated the sso component which stopped the webinterface from working. To fix this issue do the following:</p>
<p><code>/usr/local/psa/bin/sso --disable</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fplesk-panel-404-relay-after-upgrade%2F&amp;t=Plesk%20panel%20404%20%2Frelay%20after%20upgrade" id="facebook_share_link_6151">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6151') || document.getElementById('facebook_share_icon_6151') || document.getElementById('facebook_share_both_6151') || document.getElementById('facebook_share_button_6151');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6151') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/plesk-panel-404-relay-after-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>frequently used SSL commands</title>
		<link>http://gentoo-blog.de/confixx-plesk/frequently-used-ssl-commands/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/frequently-used-ssl-commands/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 14:12:11 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=5951</guid>
		<description><![CDATA[generate a new private key and matching Certificate Signing Request (eg to send to a commercial CA)
openssl req -out MYCSR.csr -pubkey -new -keyout MYKEY.key
-add -nodes to create an unencrypted private key
-add -config if your config file has not been set in the environment
decrypt private key
openssl rsa -in MYKEY.key &#62;&#62; MYKEY-NOCRYPT.key
generate a certificate siging request for [...]]]></description>
			<content:encoded><![CDATA[<p><strong>generate a new private key and matching Certificate Signing Request (eg to send to a commercial CA)<br />
</strong><code>openssl req -out MYCSR.csr -pubkey -new -keyout MYKEY.key</code></p>
<p>-add -nodes to create an unencrypted private key<br />
-add -config if your config file has not been set in the environment</p>
<p><strong>decrypt private key</strong></p>
<p><code>openssl rsa -in MYKEY.key &gt;&gt; MYKEY-NOCRYPT.key</code></p>
<p><strong>generate a certificate siging request for an existing private key</strong></p>
<p><code>openssl req -out MYCSR.csr -key MYKEY.key -new</code></p>
<p><strong>generate a certificate signing request based on an existing x509 certificate</strong></p>
<p><code>openssl x509 -x509toreq -in MYCRT.crt -out MYCSR.csr -signkey MYKEY.key</code></p>
<p><strong>create self-signed certificate (can be used to sign other certificates)</strong></p>
<p><code>openssl req -x509 -new -out MYCERT.crt -keyout MYKEY.key -days 365</code></p>
<p><strong>sign a Certificate Signing Request<br />
</strong><code>openssl x509 -req -in MYCSR.csr -CA MY-CA-CERT.crt -CAkey MY-CA-KEY.key -CAcreateserial -out MYCERT.crt -days 365</code></p>
<p>-days has to be less than the validity of the CA certificate</p>
<p><strong>convert DER (.crt .cer .der) to PEM</strong></p>
<p><code>openssl x509 -inform der -in MYCERT.cer -out MYCERT.pem</code></p>
<p><strong>convert PEM to DER</strong></p>
<p><code>openssl x509 -outform der -in MYCERT.pem -out MYCERT.der</code></p>
<p><strong>convert PKCS#12 (.pfx .p12) to PEM containing both private key and certificates<br />
</strong><br />
<code>openssl pkcs12 -in KEYSTORE.pfx -out KEYSTORE.pem -nodes</code></p>
<p>add -nocerts for private key only; add -nokeys for certificates only</p>
<p><strong>convert (add) a seperate key and certificate to a new keystore of type PKCS#12</strong></p>
<p><code>openssl pkcs12 -export -in MYCERT.crt -inkey MYKEY.key -out KEYSTORE.p12 -name "tomcat"</code><strong><br />
check a private key</strong><br />
<code>openssl rsa -in MYKEY.key -check</code></p>
<p>add -noout to not disclose the key</p>
<p><strong>check a Certificate Signing Request</strong></p>
<p><code>openssl req -text -noout -verify -in MYCSR.csr</code><br />
<strong><br />
check a certificate</strong></p>
<p><code>openssl x509 -in MYCERT.crt -text -noout</code><strong><br />
check a PKCS#12 keystore</strong></p>
<p><code>openssl pkcs12 -info -in KEYSTORE.p12</code></p>
<p><strong>check a trust chain of a certificate</strong>    </p>
<p><code>openssl verify -CAfile MYCHAINFILE.pem -verbose MYCERT.crt</code></p>
<p>-to check for server usage: -purpose sslserver<br />
-to check for client usage: -purpose sslient</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Ffrequently-used-ssl-commands%2F&amp;t=frequently%20used%20SSL%20commands" id="facebook_share_link_5951">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_5951') || document.getElementById('facebook_share_icon_5951') || document.getElementById('facebook_share_both_5951') || document.getElementById('facebook_share_button_5951');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_5951') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/frequently-used-ssl-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confixx http special entries</title>
		<link>http://gentoo-blog.de/confixx-plesk/confixx-http-special-entries/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/confixx-http-special-entries/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 09:51:18 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/uncategorized/</guid>
		<description><![CDATA[Confixx is a fairly popular Admin Panel in Germany to change certain settings in Confixx you can use an option called http special. Here are a few examples of values you may modify:

PHP Safe Mode (this is not recommended):
php_admin_flag safe_mode Off
PHP Memory Limit:
php_admin_value memory_limit 128M
PHP Max Execution Time / Max Input Time:
php_admin_value max_execution_time 120
php_admin_value max_input_time [...]]]></description>
			<content:encoded><![CDATA[<p>Confixx is a fairly popular Admin Panel in Germany to change certain settings in Confixx you can use an option called http special. Here are a few examples of values you may modify:<br />
<br />
PHP Safe Mode (this is not recommended):</p>
<p><code>php_admin_flag safe_mode Off</code></p>
<p>PHP Memory Limit:</p>
<p><code>php_admin_value memory_limit 128M</code></p>
<p>PHP Max Execution Time / Max Input Time:</p>
<p><code>php_admin_value max_execution_time 120<br />
php_admin_value max_input_time 120</code></p>
<p>PHP Max Upload Size / Max File Size</p>
<p><code>php_admin_value upload_max_file_size 32M<br />
php_admin_value post_max_size 32M</code></p>
<p>PHP Open Basedir:</p>
<p><code>php_admin_value open_basedir /path/##user##</code></p>
<p>PHP Session Save Path:</p>
<p><code>php_admin_value session.save_path /path/##user##/phptmp</code></p>
<p>Confixx Mod Rewrite:</p>
<p><code>&lt;Directory /var/www/##user##/html&gt;<br />
Options +FollowSymLinks +SymLinksIfOwnerMatch +Multiviews<br />
&lt;/Directory&gt;</code></p>
<p>Disable PHP functions:</p>
<p><code>php_admin_value disable_functions popen,escapeshellcmd,system,exec,passthru</code></p>
<p>The variable: <code>##user##</code> will match your current user if you are changing settings for more that one user this is extremely helpful</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fconfixx-http-special-entries%2F&amp;t=Confixx%20http%20special%20entries" id="facebook_share_link_4431">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_4431') || document.getElementById('facebook_share_icon_4431') || document.getElementById('facebook_share_both_4431') || document.getElementById('facebook_share_button_4431');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_4431') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/confixx-http-special-entries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto Create a self signed SSL certificate</title>
		<link>http://gentoo-blog.de/confixx-plesk/howto-create-a-self-signed-ssl-certificate/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/howto-create-a-self-signed-ssl-certificate/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 14:16:41 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/uncategorized/</guid>
		<description><![CDATA[This howto shows you howto create a self signed SSL certificate without a passphrase. Using openssl with one single command:
 openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mykey.key -out mycert.crt
After you have answered all the questions you should have two files one key file and one crt file. Please make sure to enter [...]]]></description>
			<content:encoded><![CDATA[<p>This howto shows you howto create a self signed SSL certificate without a passphrase. Using openssl with one single command:</p>
<p><code> openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mykey.key -out mycert.crt</code></p>
<p>After you have answered all the questions you should have two files one key file and one crt file. Please make sure to enter your domain name when asked for your common name. This can also be an ip address if you don&#8217;t have a domain name to use. You can change how long the cert is valid for by changing the value days. If you prefer to have your cert and key in one file normally called a pem file please use the following command:</p>
<p><code>openssl req -x509 -nodes -days 1095 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem</code></p>
<p>As you can see the only thing i changed is instead of using two file names one for the key and one for the cert. You just repeat the first name which will create the cert and the key in one file called mycert.pem in our example.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fhowto-create-a-self-signed-ssl-certificate%2F&amp;t=Howto%20Create%20a%20self%20signed%20SSL%20certificate" id="facebook_share_link_4231">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_4231') || document.getElementById('facebook_share_icon_4231') || document.getElementById('facebook_share_both_4231') || document.getElementById('facebook_share_button_4231');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_4231') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/howto-create-a-self-signed-ssl-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Document Root Plesk</title>
		<link>http://gentoo-blog.de/confixx-plesk/change-document-root-plesk/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/change-document-root-plesk/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 09:18:44 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/uncategorized/</guid>
		<description><![CDATA[1. In the directory 
/var/www/vhosts/example.com/conf create a file called vhost.conf
2. Edit the file with a text editor and add the following line:
Documentroot /my/new/DocumentRoot 
3. Then execute the following command 
/usr/local/psa/admin/sbin/websrvmng -–reconfigure-vhost -–vhost-name=example.com
4.  Okay thats it reload the apache webserver
/etc/init.d/apache2 reload
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>1. In the directory </p>
<p><code>/var/www/vhosts/example.com/conf</code> create a file called vhost.conf</p>
<p>2. Edit the file with a text editor and add the following line:</p>
<p><code>Documentroot /my/new/DocumentRoot </code></p>
<p>3. Then execute the following command </p>
<p><code>/usr/local/psa/admin/sbin/websrvmng -–reconfigure-vhost -–vhost-name=example.com</code></p>
<p>4.  Okay thats it reload the apache webserver</p>
<p><code>/etc/init.d/apache2 reload</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fchange-document-root-plesk%2F&amp;t=Change%20Document%20Root%20Plesk" id="facebook_share_link_3432">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_3432') || document.getElementById('facebook_share_icon_3432') || document.getElementById('facebook_share_both_3432') || document.getElementById('facebook_share_button_3432');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_3432') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/change-document-root-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk drweb antivirus update cron mails</title>
		<link>http://gentoo-blog.de/confixx-plesk/drweb-antivirus-update-cron-mails/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/drweb-antivirus-update-cron-mails/#comments</comments>
		<pubDate>Fri, 07 May 2010 14:05:57 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=2982</guid>
		<description><![CDATA[A cron is run every 30 minutes to check on virus database updates via /etc/cron.d/drweb-update, which sends an email every 30 minutes to the plesk server admin. Most of our customers don&#8217;t like the behavior.
To resolve, direct the output to /dev/null or to a log file instead if you need to keep a watch on [...]]]></description>
			<content:encoded><![CDATA[<p>A cron is run every 30 minutes to check on virus database updates via /etc/cron.d/drweb-update, which sends an email every 30 minutes to the plesk server admin. Most of our customers don&#8217;t like the behavior.</p>
<p>To resolve, direct the output to /dev/null or to a log file instead if you need to keep a watch on the updates.</p>
<p>1. Edit /etc/cron.d/drweb-update redirecting the output to /dev/null</p>
<p><code>vi /etc/cron.d/drweb-update</code></p>
<p>2. Add the following line </p>
<p><code>*/30 * * * * drweb /opt/drweb/update.pl >/dev/null 2>&#038;1</code></p>
<p>This would direct all out put from the drweb update script to /dev/null (trash)</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fdrweb-antivirus-update-cron-mails%2F&amp;t=Plesk%20drweb%20antivirus%20update%20cron%20mails" id="facebook_share_link_2982">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_2982') || document.getElementById('facebook_share_icon_2982') || document.getElementById('facebook_share_both_2982') || document.getElementById('facebook_share_button_2982');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_2982') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/drweb-antivirus-update-cron-mails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Confixx + Postfix+ IMAP + Maildir</title>
		<link>http://gentoo-blog.de/confixx-plesk/confixx-postfix-imap-maildir/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/confixx-postfix-imap-maildir/#comments</comments>
		<pubDate>Tue, 04 May 2010 14:36:10 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=2912</guid>
		<description><![CDATA[This howto describes howto get rid of the horrible mboxes for mail which confixx uses by default. Converting all your mailboxes to the maildir format also allows you to use imap. Please make backups of your confixx installation before you begin with this howto you have been warned:
1. Edit your confixx main.conf
 vi /root/confixx/confixx_main.conf
When your [...]]]></description>
			<content:encoded><![CDATA[<p>This howto describes howto get rid of the horrible mboxes for mail which confixx uses by default. Converting all your mailboxes to the maildir format also allows you to use imap. Please make backups of your confixx installation before you begin with this howto you have been warned:</p>
<p>1. Edit your confixx main.conf</p>
<p><code> vi /root/confixx/confixx_main.conf</code></p>
<p>When your finished this is what it should look like:</p>
<p><code>$maildrop = ‘HOMEDIR/Maildir/’;<br />
$mailBoxName = ‘Maildir’;<br />
$pop_homeDir = ‘/var/mail’; //specify folder where you want maildirs to be stored. the folder must exist<br />
$mail_realHome = ’1?; </code></p>
<p>2. Edit your postfix main.cf</p>
<p><code>vi /etc/postfix/main.cf</code></p>
<p>And add the following line:</p>
<p><code>home_mailbox = Maildir/</code></p>
<p>3. Edit your procmailrc</p>
<p><code>vi /etc/procmailrc</code></p>
<p>And add the following line:</p>
<p><code>DEFAULT=”$HOME/Maildir/”</code></p>
<p>4. Run the confixx counterscript</p>
<p><code>/root/confixx/confixx_counterscript.pl –fa -dbg</code></p>
<p>5. Convert existing Mboxes to Maildir. Confixx provides a script for doing this. Run the script and make sure to answer all the questions. Or except the defaults which should be ok.</p>
<p><code>/root/confixx/admin/contrib/convert_mb2md.pl</code></p>
<p>6. If you are using qpopper uninstall it and install courier pop and imap if you need imap. This is for debian and ubuntu:</p>
<p><code>aptitude purge openbsd-inetd qpopper</code><br />
<code>aptitude install courier-pop</code><br />
<code>aptitude install courier-imap</code></p>
<p>Thats it check you log files send a test mail and enjoy.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fconfixx-postfix-imap-maildir%2F&amp;t=Confixx%20%2B%20Postfix%2B%20IMAP%20%2B%20Maildir" id="facebook_share_link_2912">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_2912') || document.getElementById('facebook_share_icon_2912') || document.getElementById('facebook_share_both_2912') || document.getElementById('facebook_share_button_2912');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_2912') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/confixx-postfix-imap-maildir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I change the address Qmail sends the MAILER DAEMON messages to</title>
		<link>http://gentoo-blog.de/confixx-plesk/how-do-i-change-the-address-qmail-sends-the-mailer-daemon-messages-to/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/how-do-i-change-the-address-qmail-sends-the-mailer-daemon-messages-to/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 09:26:42 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=2832</guid>
		<description><![CDATA[By default Plesk administrator&#8217;s email address is listed in:
/var/qmail/alias/.qmail-mailer-daemon
/var/qmail/alias/.qmail-postmaster
/var/qmail/alias/.qmail-root
You can edit these files and set the email address you need.
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>By default Plesk administrator&#8217;s email address is listed in:</p>
<p><code>/var/qmail/alias/.qmail-mailer-daemon<br />
/var/qmail/alias/.qmail-postmaster<br />
/var/qmail/alias/.qmail-root</code></p>
<p>You can edit these files and set the email address you need.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fhow-do-i-change-the-address-qmail-sends-the-mailer-daemon-messages-to%2F&amp;t=How%20do%20I%20change%20the%20address%20Qmail%20sends%20the%20MAILER%20DAEMON%20messages%20to" id="facebook_share_link_2832">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_2832') || document.getElementById('facebook_share_icon_2832') || document.getElementById('facebook_share_both_2832') || document.getElementById('facebook_share_button_2832');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_2832') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/how-do-i-change-the-address-qmail-sends-the-mailer-daemon-messages-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

