<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Ashish Shakya</title>
    <description>The latest articles on Forem by Ashish Shakya (@ashishakya).</description>
    <link>https://forem.com/ashishakya</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F603862%2Fa37694b5-eda4-4e18-afed-2593314f3213.jpeg</url>
      <title>Forem: Ashish Shakya</title>
      <link>https://forem.com/ashishakya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ashishakya"/>
    <language>en</language>
    <item>
      <title>Connect Google Meet Link with Personal Reserved Domain</title>
      <dc:creator>Ashish Shakya</dc:creator>
      <pubDate>Mon, 29 Mar 2021 12:55:38 +0000</pubDate>
      <link>https://forem.com/ashishakya/connect-google-meet-link-with-personal-reserved-domain-228b</link>
      <guid>https://forem.com/ashishakya/connect-google-meet-link-with-personal-reserved-domain-228b</guid>
      <description>&lt;p&gt;One of the cool things I tried and implemented was to connect the Google Meet Link with my custom reserved domain name and made it look like my own custom meeting link.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisites:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A Google Meeting link&lt;/li&gt;
&lt;li&gt;Personal/Reserved Domain&lt;/li&gt;
&lt;li&gt;Cloud Hosting/Server&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Steps:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Generate a meeting link from Google Meet.&lt;/li&gt;
&lt;li&gt;Get a domain from any Domain Name Providers. For the &lt;code&gt;.np&lt;/code&gt; domain, you can register it freely from &lt;a href="https://register.com.np/"&gt;Mercantile Communication&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Get the cheapest cloud hosting plan.&lt;/li&gt;
&lt;li&gt;Point the domain name to the IP of your cloud server in the name server.&lt;/li&gt;
&lt;li&gt;Simply create a server block in your web server. In my case, I have used Nginx. The only thing you have to do is to redirect the request to your previously created Google Meet link.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Sample of server block:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;server {
        listen 80;
        listen [::]:80;
        server_name &amp;lt;reserved_domain_name&amp;gt;;
        return 301 &amp;lt;google_meet_link&amp;gt;;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In my case, my custom Google Meet link is &lt;code&gt;meet.ashishakya.com.np&lt;/code&gt;. It is easy to remember and I have been using it for my official meetings and work schedules.&lt;/p&gt;

</description>
      <category>tips</category>
      <category>hacks</category>
      <category>tricks</category>
      <category>googlemeet</category>
    </item>
  </channel>
</rss>
