<?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 server Archives - Installing.in</title>
	<atom:link href="https://www.installing.in/tag/web-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.installing.in/tag/web-server/</link>
	<description></description>
	<lastBuildDate>Sun, 23 Aug 2020 08:06:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">110734269</site>	<item>
		<title>How to Install Openresty on Debian 10</title>
		<link>https://www.installing.in/how-to-install-openresty-on-debian-10/</link>
					<comments>https://www.installing.in/how-to-install-openresty-on-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[Rajeev]]></dc:creator>
		<pubDate>Thu, 30 Jul 2020 12:49:39 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web server]]></category>
		<guid isPermaLink="false">https://www.installing.in/?p=673</guid>

					<description><![CDATA[<p>Openresty is a web server built on Nginx with some additional built-in features like Lua programming language. If you want to use Lua with Nginx you will need to compile... </p>
<p>The post <a href="https://www.installing.in/how-to-install-openresty-on-debian-10/">How to Install Openresty on Debian 10</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Openresty is a web server built on Nginx with some additional built-in features like Lua programming language. If you want to use Lua with Nginx you will need to compile Nginx from source with Lua support but with openresty, you can get all the features of Nginx and additional few without going through the hassle of compiling it from source code.</p>
<p>For installing Openresty on Debian 10 follow these simple steps</p>
<div  id="_ytid_32863"  width="760" height="428"  data-origwidth="760" data-origheight="428" data-facadesrc="https://www.youtube.com/embed/33eDqe8mGVE?enablejsapi=1&autoplay=0&cc_load_policy=0&cc_lang_pref=&iv_load_policy=1&loop=0&rel=1&fs=1&playsinline=0&autohide=2&theme=dark&color=red&controls=1&disablekb=0&" class="__youtube_prefs__ epyt-facade no-lazyload" data-epautoplay="1" ><img data-recalc-dims="1" decoding="async" data-spai-excluded="true" class="epyt-facade-poster skip-lazy" loading="lazy"  alt="YouTube player"  src="https://i0.wp.com/i.ytimg.com/vi/33eDqe8mGVE/maxresdefault.jpg?w=760&#038;ssl=1"  /><button class="epyt-facade-play" aria-label="Play"><svg data-no-lazy="1" height="100%" version="1.1" viewBox="0 0 68 48" width="100%"><path class="ytp-large-play-button-bg" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z" fill="#f00"></path><path d="M 45,24 27,14 27,34" fill="#fff"></path></svg></button></div>
<p><strong>Step 1: (Optional) Stop Nginx&nbsp;</strong></p>
<p>This step is only required if you are already running Nginx on your system. Without stopping Nginx installation of openresty might fail.</p>
<p>Run these commands to stop and disable Nginx</p>
<pre>sudo systemctl disable nginx
sudo systemctl stop nginx</pre>
<p><strong>Step 2: Import GPG key</strong></p>
<p>Run these commands to import the GPG key</p>
<pre>sudo apt-get -y install --no-install-recommends wget gnupg ca-certificates</pre>
<p>Above command will install some dependencies to import the key</p>
<pre>wget -O - https://openresty.org/package/pubkey.gpg | sudo apt-key add -</pre>
<p>This command will import the GPG key into your system</p>
<p><strong>Step 3: Add Openresty repository</strong></p>
<p>First, get the version of the Debian OS of your system. This command will get the version codename and save it to variable &#8220;codename&#8221;. We will use this variable in next command to add the appropriate repository for your system.</p>
<pre>codename=`grep -Po <span class="hljs-string">'VERSION="[0-9]+ \(\K[^)]+'</span> /etc/os-release`</pre>
<p>Now add the openresty repository for your version</p>
<pre><span class="hljs-built_in">echo</span> <span class="hljs-string">"deb http://openresty.org/package/debian <span class="hljs-variable">$codename</span> openresty"</span> \ | sudo tee /etc/apt/sources.list.d/openresty.list</pre>
<p><strong>Step 4: Update apt index</strong></p>
<p>Use this command to update the apt index so we can download the latest package from the repository</p>
<pre>sudo apt-get update</pre>
<p><strong>Step 5: Install Openresty</strong></p>
<p>Now download and install the Openresty package from the repository by using this command</p>
<pre>sudo apt-get -y install openresty</pre>
<p>If everything goes well you will have openresty installed on your system.</p>
<p>You can visit the IP Address of your server to verify openresty is running. You will be greeted with a screen like this</p>
<p><img data-recalc-dims="1" fetchpriority="high" decoding="async" class="alignnone size-full wp-image-493" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2019/03/openresty-welcome-page.png?resize=744%2C324&#038;ssl=1" alt="openresty_welcome_page" width="744" height="324"></p>
<p>That&#8217;s it</p>
<p>If you face any problem let me know in the comments below so we can solve the problem together.</p>
<p>The post <a href="https://www.installing.in/how-to-install-openresty-on-debian-10/">How to Install Openresty on Debian 10</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.installing.in/how-to-install-openresty-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">673</post-id>	</item>
		<item>
		<title>How to install Openresty on Ubuntu 20.04</title>
		<link>https://www.installing.in/how-to-install-openresty-on-ubuntu-20-04/</link>
					<comments>https://www.installing.in/how-to-install-openresty-on-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[Rajeev]]></dc:creator>
		<pubDate>Mon, 27 Jul 2020 08:05:56 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web server]]></category>
		<guid isPermaLink="false">https://www.installing.in/?p=658</guid>

					<description><![CDATA[<p>Install Openresty web server on your server using this step by step easy to follow installing tutorial. Video guide also available.</p>
<p>The post <a href="https://www.installing.in/how-to-install-openresty-on-ubuntu-20-04/">How to install Openresty on Ubuntu 20.04</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Built on popular Nginx web server Openresty comes with additional plugins to make advanced tasks easier. You can use Openresty as drop in replacement for Nginx.</p>
<p>Most used feature of Openresty is the the built in Lua plugin that helps in writing Lua web app directly inside the web server without any need on installing other software. As Lua is built into the web server it makes it faster.</p>
<p>You can always download the source and compile it yourself but that is cumbersome and makes updating Openresty later on difficult.</p>
<p>For this guide, I will be using the prebuilt binaries provided by the Openresty repository.</p>
<p>Lets get Started</p>
<p><strong>Step 1 : Import GPG Key:</strong></p>
<p>GPG key helps in verifying the authenticity of the package. Run following command to get the GPG key from the official Openresty server and add in to your server.</p>
<pre>wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -</pre>
<p><strong>Step 2 : Add Openresty repository:</strong></p>
<p>We need to be sure that &#8216;apt-add-repository&#8217; command is available in our server. Run below command and it will install the required packages if not available.</p>
<pre>sudo apt-get -y install software-properties-common</pre>
<p>Now to add the repository use below command. It will detect the version of Ubuntu running on your server and add the appropriate repository.</p>
<pre>sudo add-apt-repository -y "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main"</pre>
<p><strong>Step 3 : Install Openresty</strong></p>
<p>Update the apt index first</p>
<pre>sudo apt-get update</pre>
<p>Now run below command to download and install Openresty web server</p>
<pre>sudo apt-get install openresty</pre>
<p>If no error occurs you will have Openresty web server successfully installed and running on your server.</p>
<p>Visit your server&#8217;s IP address and you will be presented with a page like this</p>
<p><img data-recalc-dims="1" decoding="async" class=" size-full wp-image-493 aligncenter" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2019/03/openresty-welcome-page.png?resize=744%2C324&#038;ssl=1" alt="openresty_welcome_page" width="744" height="324" /></p>
<p>If you face any problem please comment below and we will try to solve it together.</p>
<p>&nbsp;</p>
<p>The post <a href="https://www.installing.in/how-to-install-openresty-on-ubuntu-20-04/">How to install Openresty on Ubuntu 20.04</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.installing.in/how-to-install-openresty-on-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">658</post-id>	</item>
		<item>
		<title>How to install Openresty on Ubuntu 18.04</title>
		<link>https://www.installing.in/how-to-install-openresty-on-ubuntu-18-04/</link>
					<comments>https://www.installing.in/how-to-install-openresty-on-ubuntu-18-04/#comments</comments>
		
		<dc:creator><![CDATA[Rajeev]]></dc:creator>
		<pubDate>Fri, 08 Mar 2019 14:42:01 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web server]]></category>
		<guid isPermaLink="false">https://www.installing.in/?p=488</guid>

					<description><![CDATA[<p>Openresty is a web app server built on popular Nginx web server with lots of advanced features built-in. It is almost a drop-in replacement for Nginx. Openresty has many built-in... </p>
<p>The post <a href="https://www.installing.in/how-to-install-openresty-on-ubuntu-18-04/">How to install Openresty on Ubuntu 18.04</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Openresty is a web app server built on popular Nginx web server with lots of advanced features built-in. It is almost a drop-in replacement for Nginx.</p>
<p>Openresty has many built-in Nginx modules that make it a powerful web app server. A most popular feature of Openresty is built-in Lua programming language support. You can directly use Lua scripts inside the Nginx conf files. You can write a high performance web application in Lua without having to install any other package other then Openresty.</p>
<p>For this guide, I will be using a fresh 1GB server from <a href="https://www.vultr.com/?ref=7841070-4F" target="_blank" rel="noopener noreferrer">Vultr</a> hosted in Germany.</p>
<p>There are 2 ways to install Openresty. Either you can use the prebuilt binaries or you can download the source and compile it yourself.</p>
<p>For this guide, I will be using the first method as it is easier and also it makes it easier to update Openresty later.</p>
<p><strong>Step 1: Import the GPG key:</strong></p>
<p>We need to import a GPG key as the package we will be downloading is encrypted and this key helps in verifying the package&#8217;s authenticity. Run following command to download and add the GPG key from the Openresty official server.</p>
<pre>wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -</pre>
<p><strong>Step 2: Add Openresty repository:</strong></p>
<p>Let us first add the apt-add-repository command</p>
<pre>sudo apt-get -y install software-properties-common</pre>
<p>Now run below command to add the repository. This command will detect the version of ubuntu you are using and add the appropriate repository.</p>
<pre>sudo add-apt-repository -y <span class="hljs-string">"deb http://openresty.org/package/ubuntu <span class="hljs-variable">$(lsb_release -sc)</span> main"</span></pre>
<p>Now you will have the official Openresty apt repository added to your system.</p>
<p><strong>Step 3: Install Openresty:</strong></p>
<p>First let&#8217;s update the apt index. Use this command to do so</p>
<pre>sudo apt-get update</pre>
<p>Now run this command to download and install the Openresty from its official repository</p>
<pre>sudo apt-get install openresty</pre>
<p>If everything goes well you will have Openresty successfully installed of your server.</p>
<p>Check it by visiting the IP address of your server. You will see a page like this:</p>
<p><img data-recalc-dims="1" decoding="async" class="alignnone size-full wp-image-493" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2019/03/openresty-welcome-page.png?resize=744%2C324&#038;ssl=1" alt="openresty_welcome_page" width="744" height="324"></p>
<p><em><strong>Bonus tip:</strong></em></p>
<p>If you are trying to replace previously installed Nginx with Openresty rather the installing it on fresh server then disable and stop the Nginx before following this tutorial.</p>
<p>Disable Nginx with this command</p>
<pre>sudo systemctl <span class="hljs-built_in">disable</span> nginx</pre>
<p>and stop Nginx with this command</p>
<pre>sudo systemctl stop nginx</pre>
<p>If you face any problem while installing openresty please let me know in the comments section so we can solve it together.</p>
<p>The post <a href="https://www.installing.in/how-to-install-openresty-on-ubuntu-18-04/">How to install Openresty on Ubuntu 18.04</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.installing.in/how-to-install-openresty-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">488</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 5/97 objects using Redis
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk
Database Caching using Redis (Request-wide modification query)

Served from: installing.in @ 2026-05-03 14:02:19 by W3 Total Cache
-->