<?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>Mellowood Designs</title>
	<atom:link href="http://www.mellowooddesigns.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mellowooddesigns.com</link>
	<description>My views on music, technology, and anything else</description>
	<lastBuildDate>Fri, 26 Feb 2010 17:52:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CentOS / Redhat Apache mod_ssl Configuration</title>
		<link>http://www.mellowooddesigns.com/blog/2010/02/centos-redhat-apache-mod_ssl-configuration/</link>
		<comments>http://www.mellowooddesigns.com/blog/2010/02/centos-redhat-apache-mod_ssl-configuration/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:52:51 +0000</pubDate>
		<dc:creator>apmellott</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mod_ssl]]></category>

		<guid isPermaLink="false">http://www.mellowooddesigns.com.php5-11.dfw1-1.websitetestlink.com/?p=19</guid>
		<description><![CDATA[
			
				
			
		
The mod_ssl module provides strong cryptography for the Apache Web server via the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols. How do I install and configure mod_ssl under CentOS / Fedora / Redhat Enterprise Linux?
mod_ssl is the SSL/TLS module for the Apache HTTP server. You can use self signed certificate or 3rd [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fcentos-redhat-apache-mod_ssl-configuration%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fcentos-redhat-apache-mod_ssl-configuration%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The mod_ssl module provides strong cryptography for the Apache Web server via the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols. How do I install and configure mod_ssl under CentOS / Fedora / Redhat Enterprise Linux?</p>
<p>mod_ssl is the SSL/TLS module for the Apache HTTP server. You can use self signed certificate or 3rd party SSL certificate. This module provides SSL v2/v3 and TLS v1 support for the Apache HTTP Server. It was contributed by Ralf S. Engeschall based on his mod_ssl project and originally derived from work by Ben Laurie. This module relies on OpenSSL to provide the cryptography engine.</p>
<h2>Step #1: Install mod_ssl</h2>
<p>Type the following command as the root user to install mod_ssl, enter:<br />
<code># yum install mod ssl</code></p>
<h2>Step #2: Create an SSL Certificate</h2>
<p>Type the following commands:<br />
<code># cd /etc/pki/tls/certs<br />
# openssl genrsa -des3 -out apachekey.pem 2048</code></p>
<p>Sample outputs:</p>
<p><code>Generating RSA private key, 2048 bit long modulus<br />
..................+++<br />
...................................+++<br />
e is 65537 (0x10001)<br />
Enter pass phrase for apachekey.pem:<br />
Verifying - Enter pass phrase for apachekey.pem:Note enter a strong, passphrase to protect the Apache web server key pair.</code></p>
<p>Generate a Certificate Signing Request (CSR)<br />
Type the following command:<br />
<code># openssl req -new -key apachekey.pem -out apachekey.csr</code></p>
<p>Sample outputs:</p>
<p><code>Enter pass phrase for apachekey.pem:<br />
You are about to be asked to enter information that will be incorporated<br />
into your certificate request.<br />
What you are about to enter is what is called a Distinguished Name or a DN.<br />
There are quite a few fields but you can leave some blank<br />
For some fields there will be a default value,<br />
If you enter '.', the field will be left blank.<br />
-----<br />
Country Name (2 letter code) [GB]:IN<br />
State or Province Name (full name) [Berkshire]:MH<br />
Locality Name (eg, city) [Newbury]:Poona<br />
Organization Name (eg, company) [My Company Ltd]:nixCraft LTD<br />
Organizational Unit Name (eg, section) []:IT<br />
Common Name (eg, your name or your server's hostname) []:www.nixcraft.com<br />
Email Address []:vivek@nixcraft.com</p>
<p>Please enter the following 'extra' attributes<br />
to be sent with your certificate request<br />
A challenge password []:<br />
An optional company name []:</code></p>
<p>You need to provide the information fill or hit [Enter] key to accept defaults, but the Common Name field is very important. You must match the fullyqualified domain name of your server exactly (e.g. www.nixcraft.com) or the certificate will not work. No need to enter the challenge password.</p>
<p>Create the Web Server Certificate<br />
You must signed the CSR to create the web server certificate, enter (you can send it to your CA to sign the same). To sign httpserver.csr using your CA:<br />
<code># openssl ca -in apachekey.csr -out apachecert.pem</code></p>
<p>Install SSL Certificate<br />
Copy server key and certificates files /etc/pki/tls/http/, enter:<br />
<code># cp apachecert.pem /etc/pki/tls/http/<br />
# cp apachekey.pem /etc/pki/tls/http/</code></p>
<p>Edit /etc/httpd/conf.d/ssl.conf, enter:<br />
<code># vi /etc/httpd/conf.d/ssl.conf</code></p>
<p>Listen to the the HTTPS port, enter:<br />
<code>Listen 10.10.29.68:443</code></p>
<p>Update it as follows to seed appropriately, enter:<br />
<code>SSLRandomSeed startup file:/dev/urandom 1024<br />
SSLRandomSeed connect file:/dev/urandom 1024</code></p>
<p>Update VirtualHost as follows:<br />
<code>SSLEngine On<br />
SSLCertificateFile /etc/pki/tls/http/apachecert.pem<br />
SSLCertificateKeyFile /etc/pki/tls/http/apachekey.pem<br />
SSLProtocol All -SSLv2<br />
SSLCipherSuite HIGH:MEDIUM:!aNULL:+MD5<br />
DocumentRoot "/var/www/html/ssl"<br />
ServerName www.nixcraft.com:443</code></p>
<p>Save and close the file. Make sure /var/www/html/ssl exits, enter:<br />
<code># mkdir -p /var/www/html/ssl</code></p>
<p>Edit /etc/httpd/conf/httpd.conf, enter:<br />
<code># vi /etc/httpd/conf/httpd.conf</code></p>
<p>Make sure SSL is used for /var/www/html/ssl and set other options for the same, enter:<br />
<code>SSLRequireSSL<br />
SSLOptions +StrictRequire<br />
SSLRequire %{HTTP_HOST} eq "www.nixcraft.com"<br />
ErrorDocument 403 https://www.nixcraft.com/sslerror.html</code></p>
<p>Now, you can upload ssl specific php or html pages in /var/www/html/ssl directory and can access them by visiting https://www.nixcraft.com/ url. Do not forgot to restart Apache:<br />
<code># service httpd restart</code></p>
<h2>Firewall Configuration</h2>
<p>Edit /etc/sysconfig/iptables. Add the following lines, ensuring that they appear before the final DROP lines:</p>
<p>-<code>A RH-Firewall-1-INPUT -m state --state NEW -p tcp --dport 443 -j ACCEPT</code></p>
<p>Save and close the file. Restart the firewall:<br />
<code># service iptables restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mellowooddesigns.com/blog/2010/02/centos-redhat-apache-mod_ssl-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start Iptables under Linux</title>
		<link>http://www.mellowooddesigns.com/blog/2010/02/start-iptables-under-linux/</link>
		<comments>http://www.mellowooddesigns.com/blog/2010/02/start-iptables-under-linux/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 21:23:12 +0000</pubDate>
		<dc:creator>apmellott</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iptables]]></category>

		<guid isPermaLink="false">http://www.mellowooddesigns.com.php5-11.dfw1-1.websitetestlink.com/?p=16</guid>
		<description><![CDATA[
			
				
			
		
Q. How do I start Iptables firewall under RHEL / Red Hat / CentOS / Fedora Linux from a shell prompt? How do I stop firewall?
A. First, you need to configure firewall rules by editing text file located at /etc/sysconfig/iptables. You can also use setup command to configure firewall. Just type the following as root [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fstart-iptables-under-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fstart-iptables-under-linux%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Q. How do I start Iptables firewall under RHEL / Red Hat / CentOS / Fedora Linux from a shell prompt? How do I stop firewall?</p>
<p>A. First, you need to configure firewall rules by editing text file located at /etc/sysconfig/iptables. You can also use setup command to configure firewall. Just type the following as root user:<br />
<code># setup</code></p>
<p>Select Firewall configuration and just follow on screen instructions.</p>
<p>Once configuration is updated type the following command at a shell prompt:</p>
<p>To start firewall from a shell enter:<br />
<code># chkconfig iptables on<br />
# service iptables start</code></p>
<p>To stop firewall, enter:<br />
<code># service iptables stop</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mellowooddesigns.com/blog/2010/02/start-iptables-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samba: Linux Iptables Firewall Configuration</title>
		<link>http://www.mellowooddesigns.com/blog/2010/02/samba-linux-iptables-firewall-configuration/</link>
		<comments>http://www.mellowooddesigns.com/blog/2010/02/samba-linux-iptables-firewall-configuration/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 21:21:55 +0000</pubDate>
		<dc:creator>apmellott</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.mellowooddesigns.com.php5-11.dfw1-1.websitetestlink.com/?p=14</guid>
		<description><![CDATA[
			
				
			
		
How do I configure iptables firewall under CentOS / Fedora / RHEL / Redhat Linux to allow access to the Samba server? How do I open TCP ports # 137, 138, 139 and 445 under Linux so that all Microsoft Windows machine can access files and printer on a Linux host?
The Samba server can be [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fsamba-linux-iptables-firewall-configuration%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fsamba-linux-iptables-firewall-configuration%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>How do I configure iptables firewall under CentOS / Fedora / RHEL / Redhat Linux to allow access to the Samba server? How do I open TCP ports # 137, 138, 139 and 445 under Linux so that all Microsoft Windows machine can access files and printer on a Linux host?</p>
<p>The Samba server can be configured to allow access to certain hosts. However, iptables prevent the access over the Internet. You must allow only the systems on your network as clients of the Samba Linux server.</p>
<p>Iptables Open Port 137, 138, 139 and 445<br />
Edit /etc/sysconfig/iptables file, enter:</p>
<p><code># vi /etc/sysconfig/iptables</code><br />
To allow access to 192.168.1.0/24 network only add the following before the final LOG &amp; DROP statements:</p>
<p><code>-A RH-Firewall-1-INPUT -s 192.168.1.0/24 -m state --state NEW -p tcp --dport 137 -j ACCEPT<br />
-A RH-Firewall-1-INPUT -s 192.168.1.0/24 -m state --state NEW -p tcp --dport 138 -j ACCEPT<br />
-A RH-Firewall-1-INPUT -s 192.168.1.0/24 -m state --state NEW -p tcp --dport 139 -j ACCEPT<br />
-A RH-Firewall-1-INPUT -s 192.168.1.0/24 -m state --state NEW -p tcp --dport 445 -j ACCEPT</code></p>
<p>Save and close the file.</p>
<p>Restart Firewall</p>
<p>Type the following command:<br />
<code>service iptables restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mellowooddesigns.com/blog/2010/02/samba-linux-iptables-firewall-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS / Redhat: Turn On SELinux Protection</title>
		<link>http://www.mellowooddesigns.com/blog/2010/02/centos-redhat-turn-on-selinux-protection/</link>
		<comments>http://www.mellowooddesigns.com/blog/2010/02/centos-redhat-turn-on-selinux-protection/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 03:30:06 +0000</pubDate>
		<dc:creator>apmellott</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[selinux]]></category>

		<guid isPermaLink="false">http://www.mellowooddesigns.com.php5-11.dfw1-1.websitetestlink.com/?p=10</guid>
		<description><![CDATA[
			
				
			
		
SELinux enforces the idea that programs should be limited in what files they can access and what actions they can take. However, by default it is turned off under RHEL / CentOS 5.x server? How do I turn it on?
SELinux is a kernel security extension, which can be used to guard against misconfigured or compromised [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fcentos-redhat-turn-on-selinux-protection%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fcentos-redhat-turn-on-selinux-protection%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>SELinux enforces the idea that programs should be limited in what files they can access and what actions they can take. However, by default it is turned off under RHEL / CentOS 5.x server? How do I turn it on?</p>
<p>SELinux is a kernel security extension, which can be used to guard against misconfigured or compromised programs. It comes with Mandatory Access Control (MAC) system that improves the traditional UNIX/Linux DAC (Discretionary Access Control) model.</p>
<h2>How Do I Enable SELinux under Redhat / Fedora and CentOS Linux Systems?</h2>
<p>Edit /etc/selinux/config file, run:<br />
<code># vi /etc/selinux/config</code></p>
<p>Update the configuration file as follows:<br />
<code>SELINUX=enforcing<br />
SELINUXTYPE=targeted</code></p>
<h3>Understanding SELinux Configuration</h3>
<ul>
<li><strong>SELINUX=enforcing</strong> : Enforcing is the default mode which will enable and enforce the SELinux security policy on the Linux. It will also deny unauthorized access and log actions in a log file.</li>
<li><strong>SELINUXTYPE=targeted</strong> : Only targeted network daemons (such as DNS, Apache and others) are protected.</li>
</ul>
<p>Save and close the file. Make sure <a href="http://www.cyberciti.biz/faq/how-to-turn-off-selinux-security-enhanced-linux/">SELinux is not disabled using</a> Grub boot loader. Search /boot/grub/grub.conf file using grep and make sure the following line DO NOT appears:<br />
<code># egrep -i  'selinux=0|enforcing=0' /boot/grub/grub.conf</code></p>
<p>If you found lines with <strong>selinux=0</strong> or <strong>enforcing=0</strong>, remove them and save the changes.</p>
<h2>Prepare File System For The Reboot</h2>
<p>The chcon command can be used to change SELinux security context of a file. However, it is recommended that you relabel complete filesystem.</p>
<h3>Restore Default Security Contexts</h3>
<p>Type the following command to restore default security contexts for /home:<br />
<code># restorecon -Rv -n /home</code><br />
You can run this on root (/) file system too.</p>
<h3>Relabel Complete Filesystem</h3>
<p>Do not skip this step and reboot the system. Type the following commands:<br />
<code># touch /.autorelabel<br />
# reboot </code><br />
It will take some time to relabel complete filesystem. If you get any errors or common services mysqld or sshd failed, try the following solution (go to a single user mode):<br />
<code># init 1<br />
# genhomedircon<br />
# touch /.autorelabel<br />
# reboot<br />
</code></p>
<h2>Make Sure SELinux is Properly Enabled</h2>
<p>Type the following command:<br />
<code># sestatus </code><br />
Sample outputs:<br />
<code>SELinux status:                 enabled<br />
SELinuxfs mount:                /selinux<br />
Current mode:                   enforcing<br />
Mode from config file:          enforcing<br />
Policy version:                 21<br />
Policy from config file:        targeted</code></p>
<h3>How Do I Print Full List Of Allowed Network Ports?</h3>
<p>Type the following commands<br />
<code># semanage port -l<br />
# semanage port -l | less<br />
#### look for port 80 ####<br />
# semanage port -l  | grep -w 80 </code></p>
<h3>How Do I Allow Lighttpd / Apache / Nginx At Port 8181?</h3>
<p>By default SELinux will block access to many ports including 8181. You need to allow access to a port # 8181 so that it can bind and listen for incoming requests on non privileged ports. You need to use the semanage command as follows:<br />
<code># semanage port -a -t http_port_t -p tcp 8181</code></p>
<h3>How Do I Find Out Unprotected Services?</h3>
<p>Type the following command:<br />
<code># ps -eZ | egrep "initrc" | egrep -vw "ps|tr|egrep|awk|bash" | tr ':' ' ' | awk '{ print $NF }'</code><br />
You should not see any output on fully configured SELinux systems.</p>
<h3>How Do I See SELinux Labels?</h3>
<p>Type the following command:<br />
<code># ls -lZ /path/to/file<br />
# ls -lZd /path/to/dir<br />
# ls -lZd /etc<br />
# ls -lZ /dev/ | grep deviceName<br />
# ls -lZ /etc/resolv.conf </code><br />
Sample outputs:<br />
<code>-rw-r--r--  root root system_u:object_r:net_conf_t     /etc/resolv.conf</code></p>
<h2>Troubleshooting  SELinux Policy Errors</h2>
<p>SELinux is pretty complicated kernel software. It takes time to fix error. Use the following tools to find and debug SELinux policy problems (refer to your local man pages):</p>
<ul>
<li>ps -Z -p PID</li>
<li>ls -Z fileName</li>
<li>ausearch</li>
<li>restorecon</li>
<li>semodule</li>
<li>audit2allow</li>
<li>Log files: /var/log/audit/audit.log and /var/log/setroubleshoot/setroubleshootd.log</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mellowooddesigns.com/blog/2010/02/centos-redhat-turn-on-selinux-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn on SELinux in Redhat or CentOS Linux Over Remote SSH Session</title>
		<link>http://www.mellowooddesigns.com/blog/2010/02/turn-on-selinux-in-redhat-or-centos-linux-over-remote-ssh-session/</link>
		<comments>http://www.mellowooddesigns.com/blog/2010/02/turn-on-selinux-in-redhat-or-centos-linux-over-remote-ssh-session/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 03:20:44 +0000</pubDate>
		<dc:creator>apmellott</dc:creator>
				<category><![CDATA[CentOS]]></category>

		<guid isPermaLink="false">http://www.mellowooddesigns.com.php5-11.dfw1-1.websitetestlink.com/?p=3</guid>
		<description><![CDATA[
			
				
			
		
My hosting company disabled SELinux protection. How do I turn on SELinux over remote ssh session without distributing existing networking services?
You can enable SELinux  it by typing the following commands:
#genhomedircon
# touch /.autorelabel
# reboot
After reboot turn it on:
# setenforce 1 
You need to modify /etc/grub.conf or /etc/selinux/config to enable SELinux after each reboot. Edit /etc/selinux/config, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fturn-on-selinux-in-redhat-or-centos-linux-over-remote-ssh-session%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fturn-on-selinux-in-redhat-or-centos-linux-over-remote-ssh-session%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>My hosting company disabled SELinux protection. How do I turn on SELinux over remote ssh session without distributing existing networking services?</p>
<p>You can enable SELinux  it by typing the following commands:<br />
<code>#genhomedircon<br />
# touch /.autorelabel<br />
# reboot</code></p>
<p>After reboot turn it on:<br />
<code># setenforce 1 </code></p>
<p>You need to modify /etc/grub.conf or /etc/selinux/config to enable SELinux after each reboot. Edit /etc/selinux/config, enter:<br />
<code># vi /etc/selinux/config</code></p>
<p>Edit/add as follows:<br />
<code>SELINUX=enforcing<br />
SELINUXTYPE=targeted</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mellowooddesigns.com/blog/2010/02/turn-on-selinux-in-redhat-or-centos-linux-over-remote-ssh-session/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.mellowooddesigns.com/blog/2010/02/hello-world/</link>
		<comments>http://www.mellowooddesigns.com/blog/2010/02/hello-world/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 02:48:54 +0000</pubDate>
		<dc:creator>apmellott</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mellowooddesigns.com.php5-11.dfw1-1.websitetestlink.com/?p=1</guid>
		<description><![CDATA[
			
				
			
		
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fhello-world%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.mellowooddesigns.com%2Fblog%2F2010%2F02%2Fhello-world%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mellowooddesigns.com/blog/2010/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
