<?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>Web development Blogs Archives - Blogs</title>
	<atom:link href="https://www.advaitss.co.in/blogs/category/web-development-blogs/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.advaitss.co.in/blogs/category/web-development-blogs/</link>
	<description>Blogs that empower you</description>
	<lastBuildDate>Tue, 29 Jul 2025 09:50:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>rsync : how to sync between docker and host os</title>
		<link>https://www.advaitss.co.in/blogs/rsync-how-to-sync-between-docker-and-host-os/</link>
					<comments>https://www.advaitss.co.in/blogs/rsync-how-to-sync-between-docker-and-host-os/#respond</comments>
		
		<dc:creator><![CDATA[abhinav]]></dc:creator>
		<pubDate>Sun, 20 Jul 2025 14:42:53 +0000</pubDate>
				<category><![CDATA[Open Source and Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web development Blogs]]></category>
		<category><![CDATA[containerization]]></category>
		<category><![CDATA[containers]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[syncing]]></category>
		<guid isPermaLink="false">https://www.advaitss.co.in/blogs/?p=205</guid>

					<description><![CDATA[<p>rsync is the most effective utility&#160;for efficient file synchronization between your Docker container and the host operating system. With advancements in web development technologies, the way of deployments are also evolved over the period of time. If you are a newbie developer in docker containerization, then this article is for you. Below are the key ... <a title="rsync : how to sync between docker and host os" class="read-more" href="https://www.advaitss.co.in/blogs/rsync-how-to-sync-between-docker-and-host-os/" aria-label="Read more about rsync : how to sync between docker and host os">Read more</a></p>
<p>The post <a href="https://www.advaitss.co.in/blogs/rsync-how-to-sync-between-docker-and-host-os/">rsync : how to sync between docker and host os</a> appeared first on <a href="https://www.advaitss.co.in/blogs">Blogs</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.advaitss.co.in/blogs/rsync-how-to-sync-between-docker-and-host-os/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to serve a website from home directory instead of default root?</title>
		<link>https://www.advaitss.co.in/blogs/how-to-serve-a-website-from-a-home-directory/</link>
					<comments>https://www.advaitss.co.in/blogs/how-to-serve-a-website-from-a-home-directory/#respond</comments>
		
		<dc:creator><![CDATA[abhinav]]></dc:creator>
		<pubDate>Sat, 28 Dec 2024 04:51:00 +0000</pubDate>
				<category><![CDATA[Web development Blogs]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[home directory]]></category>
		<category><![CDATA[virtual host]]></category>
		<guid isPermaLink="false">https://www.advaitss.co.in/blogs/?p=158</guid>

					<description><![CDATA[<p>Access your website using your domain name or the EC2 instance's public IP address.</p>
<p>By following these steps, you can host your website in your EC2-user home directory instead of the default /var/www/html directory</p>
<p>The post <a href="https://www.advaitss.co.in/blogs/how-to-serve-a-website-from-a-home-directory/">How to serve a website from home directory instead of default root?</a> appeared first on <a href="https://www.advaitss.co.in/blogs">Blogs</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.advaitss.co.in/blogs/how-to-serve-a-website-from-a-home-directory/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Singleton class in php : How to define and use them</title>
		<link>https://www.advaitss.co.in/blogs/singleton-class-in-php-how-to-define-and-use-them/</link>
					<comments>https://www.advaitss.co.in/blogs/singleton-class-in-php-how-to-define-and-use-them/#respond</comments>
		
		<dc:creator><![CDATA[abhinav]]></dc:creator>
		<pubDate>Fri, 20 Dec 2024 22:53:33 +0000</pubDate>
				<category><![CDATA[Web development Blogs]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Singleton]]></category>
		<guid isPermaLink="false">https://www.advaitss.co.in/blogs/?p=153</guid>

					<description><![CDATA[<p>This article explains about how to define and use Singleton class in php Define and use a singleton class in php isn&#8217;t that much difficult. To define and use a singleton variable in PHP, you can follow the Singleton design pattern. This pattern ensures that a class has only one instance and provides a global ... <a title="Singleton class in php : How to define and use them" class="read-more" href="https://www.advaitss.co.in/blogs/singleton-class-in-php-how-to-define-and-use-them/" aria-label="Read more about Singleton class in php : How to define and use them">Read more</a></p>
<p>The post <a href="https://www.advaitss.co.in/blogs/singleton-class-in-php-how-to-define-and-use-them/">Singleton class in php : How to define and use them</a> appeared first on <a href="https://www.advaitss.co.in/blogs">Blogs</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.advaitss.co.in/blogs/singleton-class-in-php-how-to-define-and-use-them/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
