{"id":401,"date":"2020-09-01T17:47:58","date_gmt":"2020-09-01T21:47:58","guid":{"rendered":"https:\/\/snehpatel.com\/?p=401"},"modified":"2020-09-01T17:47:58","modified_gmt":"2020-09-01T21:47:58","slug":"deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack","status":"publish","type":"post","link":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/","title":{"rendered":"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack."},"content":{"rendered":"\n<p>Communication is the most important aspect of the team&#8217;s success. Having efficient communication with the team members has to be a key component for any team leader. This key component in today&#8217;s corporate environment is dominated by Instant messaging tools like slack and discord. This wasn&#8217;t the case before, instead the use of email was considered for team communication. But the biggest difference between the emails and instant messaging is speed. Humans have become more impatient, getting an instant reply is a must to maintain efficiency within teammates.<\/p>\n\n\n\n<p>Privacy is a concern for many companies handling sensitive data. And to resolve this issue most companies prefer the data to be processed and handled on-premise. For which free and open-source can be the best option for self-hosting as per the company&#8217;s requirement towards privacy.<\/p>\n\n\n\n<p>Mattermost is an open-source, self-hosted chat service. It is marketed as a slack alternative for the privacy-conscious enterprise. To see the comparative click the link: <a href=\"https:\/\/mattermost.com\/mattermost-vs-slack\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/mattermost.com\/mattermost-vs-slack\/<\/a><\/p>\n\n\n\n<p>But let&#8217;s get started with the installation of the Mattermost server on the Ubuntu server using PostgreSQL and Nginx.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Let&#8217;s install the required packages<\/li><\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update &amp;&amp; sudo apt-get -y upgrade\nsudo apt-get install software-properties-common wget -y<\/code><\/pre>\n\n\n\n<p>2. Now install and configure PostgreSQL.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install postgresql postgresql-contrib\n\nsudo su - postgres\n\npsql\n\n\n\\password postgres\n\nCREATE DATABASE matterdb;\n\nCREATE USER matteruser WITH PASSWORD 'Password';\n\nGRANT ALL PRIVILEGES ON DATABASE matterdb TO matteruser;\n\n\\q\n\n\nexit<\/code><\/pre>\n\n\n\n<p>3. Installation and Configuration of the Mattermost<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo useradd -m -s \/bin\/bash matter\nsudo passwd matter\nsudo su - matter\nwget https:\/\/releases.mattermost.com\/5.25.0\/mattermost-5.25.0-linux-amd64.tar.gz\ntar -xzvf mattermost-5.25.0-linux-amd64.tar.gz\ncd mattermost\/\nmkdir data\/<\/code><\/pre>\n\n\n\n<p>4. Edit database credential for Mattermost<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano config\/config.json<\/code><\/pre>\n\n\n\n<p>5. Change as following and save the file<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"DriverName\": \"postgres\",\n\"DataSource\": \"postgres:\/\/matteruser:Password@127.0.0.1:5432\/matterdb?sslmode=disable&amp;connect_timeout=10\",<\/code><\/pre>\n\n\n\n<p>6. Configure Mattermost as service<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd bin\/\n.\/platform\nctrl^c\nexit\ncd \/etc\/systemd\/system\/\nnano mattermost.service<\/code><\/pre>\n\n\n\n<p>7. Add following lines<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=Mattermost\nAfter=syslog.target network.target postgresql-9.4.service\n\n&#91;Service]\nType=simple\nUser=matter\nGroup=matter\nExecStart=\/home\/matter\/mattermost\/bin\/platform\nPrivateTmp=yes\nWorkingDirectory=\/home\/matter\/mattermost\nRestart=always\nRestartSec=30\nLimitNOFILE=49152\n\n&#91;Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<p>8. Reload Mattermost service and check status<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl daemon-reload ; systemctl start mattermost\nnetstat -plntu\nsystemctl status mattermost<\/code><\/pre>\n\n\n\n<p>9. Now let&#8217;s install and configure nginx<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install nginx -y\ncd \/etc\/nginx\/\nmkdir ssl\/ ; cd ssl\/\nopenssl req -new -x509 -days 365 -nodes -out \/etc\/nginx\/ssl\/mattermost.crt -keyout \/etc\/nginx\/ssl\/mattermost.key\nchmod 400 mattermost.key\ncd \/etc\/nginx\/sites-available\/\nnano mattermost<\/code><\/pre>\n\n\n\n<p>10. Add following lines in the file<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>server {\n        listen 80;\n        server_name    mattermost.yoursite.com;\n        return 301 https:\/\/$server_name$request_uri;\n}\n\nserver {\n        listen 443 ssl;\n        server_name mattermost.yoursite.com;\n\n        ssl on;\n        ssl_certificate \/etc\/nginx\/ssl\/mattermost.crt;\n        ssl_certificate_key \/etc\/nginx\/ssl\/mattermost.key;\n        ssl_session_timeout 5m;\n        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;\n        ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-$        ssl_prefer_server_ciphers on;\n        ssl_session_cache shared:SSL:10m;\n\n        location \/ {\n                gzip off;\n                proxy_set_header X-Forwarded-Ssl on;\n                client_max_body_size 50M;\n                proxy_set_header Upgrade $http_upgrade;\n                proxy_set_header Connection \"upgrade\";\n\t\tproxy_set_header Host $http_host;\n                proxy_set_header X-Real-IP $remote_addr;\n                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n                proxy_set_header X-Forwarded-Proto $scheme;\n                proxy_set_header X-Frame-Options SAMEORIGIN;\n                proxy_pass http:\/\/127.0.0.1:8065;\n        }\n}<\/code><\/pre>\n\n\n\n<p>11. Test the Configuration and make symlink<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nginx -t\nln -s \/etc\/nginx\/sites-available\/mattermost \/etc\/nginx\/sites-enabled\/\nnginx -t\nsudo systemctl restart nginx\nsudo systemctl enable mattermost\nsudo systemctl restart mattermost<\/code><\/pre>\n\n\n\n<p>You have to set up your DNS to point to mattermost.yoursite.com and enter that URL to your browser and follow first-time setup instructions shown on screen.<\/p>\n\n\n\n<p>Use the last URL in credits and useful link to get lets-encrypt certificate installed. It is an straightforward process.<\/p>\n\n\n\n<p>Credits and useful links :<br><a href=\"https:\/\/www.youtube.com\/watch?v=3MFnXjlNmOc\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.youtube.com\/watch?v=3MFnXjlNmOc<\/a><br><a href=\"https:\/\/docs.mattermost.com\/install\/install-ubuntu-1804.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/docs.mattermost.com\/install\/install-ubuntu-1804.html<\/a><br><a href=\"https:\/\/docs.mattermost.com\/install\/config-ssl-http2-nginx.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/docs.mattermost.com\/install\/config-ssl-http2-nginx.html<\/a><br><a href=\"https:\/\/mattermost.com\/mattermost-vs-slack\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/mattermost.com\/mattermost-vs-slack\/<\/a><br><a href=\"https:\/\/certbot.eff.org\/lets-encrypt\/ubuntubionic-nginx\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/certbot.eff.org\/lets-encrypt\/ubuntubionic-nginx<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Communication is the most important aspect of the team&#8217;s success. Having efficient communication with the team members has to be a key component for any team leader. This key component in today&#8217;s corporate environment is dominated by Instant messaging tools like slack and discord. This wasn&#8217;t the case before, instead the use of email was &#8230; <a title=\"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack.\" class=\"read-more\" href=\"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/\" aria-label=\"Read more about Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack.\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[19,6],"tags":[24,30,37,42],"class_list":["post-401","post","type-post","status-publish","format-standard","hentry","category-mattermost","category-opensource","tag-chat","tag-im","tag-mattermost","tag-opensource"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack. - Sneh Patel<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack. - Sneh Patel\" \/>\n<meta property=\"og:description\" content=\"Communication is the most important aspect of the team&#8217;s success. Having efficient communication with the team members has to be a key component for any team leader. This key component in today&#8217;s corporate environment is dominated by Instant messaging tools like slack and discord. This wasn&#8217;t the case before, instead the use of email was ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/\" \/>\n<meta property=\"og:site_name\" content=\"Sneh Patel\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-01T21:47:58+00:00\" \/>\n<meta name=\"author\" content=\"Sneh Patel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sneh Patel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/\"},\"author\":{\"name\":\"Sneh Patel\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\"},\"headline\":\"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack.\",\"datePublished\":\"2020-09-01T21:47:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/\"},\"wordCount\":340,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\"},\"keywords\":[\"chat\",\"IM\",\"mattermost\",\"opensource\"],\"articleSection\":[\"mattermost\",\"opensource\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/\",\"url\":\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/\",\"name\":\"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack. - Sneh Patel\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#website\"},\"datePublished\":\"2020-09-01T21:47:58+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/snehpatel.com\\\/index.php\\\/2020\\\/09\\\/01\\\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#website\",\"url\":\"https:\\\/\\\/snehpatel.com\\\/\",\"name\":\"Sneh Patel\",\"description\":\"Cyber Security Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/snehpatel.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/snehpatel.com\\\/#\\\/schema\\\/person\\\/a39105bc63f7e11a0e07b12a4c3dda73\",\"name\":\"Sneh Patel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\",\"width\":672,\"height\":222,\"caption\":\"Sneh Patel\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/snehpatel.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1\"},\"sameAs\":[\"http:\\\/\\\/snehpatel.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack. - Sneh Patel","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/","og_locale":"en_US","og_type":"article","og_title":"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack. - Sneh Patel","og_description":"Communication is the most important aspect of the team&#8217;s success. Having efficient communication with the team members has to be a key component for any team leader. This key component in today&#8217;s corporate environment is dominated by Instant messaging tools like slack and discord. This wasn&#8217;t the case before, instead the use of email was ... Read more","og_url":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/","og_site_name":"Sneh Patel","article_published_time":"2020-09-01T21:47:58+00:00","author":"Sneh Patel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sneh Patel","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/#article","isPartOf":{"@id":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/"},"author":{"name":"Sneh Patel","@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73"},"headline":"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack.","datePublished":"2020-09-01T21:47:58+00:00","mainEntityOfPage":{"@id":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/"},"wordCount":340,"commentCount":0,"publisher":{"@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73"},"keywords":["chat","IM","mattermost","opensource"],"articleSection":["mattermost","opensource"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/","url":"https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/","name":"Deploy the Mattermost server. Install Mattermost on Ubuntu using PostgreSQL and Nginx. A privacy alternative for slack. - Sneh Patel","isPartOf":{"@id":"https:\/\/snehpatel.com\/#website"},"datePublished":"2020-09-01T21:47:58+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/snehpatel.com\/index.php\/2020\/09\/01\/deploy-the-mattermost-server-install-mattermost-on-ubuntu-using-postgresql-and-nginx-a-privacy-alternative-for-slack\/"]}]},{"@type":"WebSite","@id":"https:\/\/snehpatel.com\/#website","url":"https:\/\/snehpatel.com\/","name":"Sneh Patel","description":"Cyber Security Blog","publisher":{"@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/snehpatel.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/snehpatel.com\/#\/schema\/person\/a39105bc63f7e11a0e07b12a4c3dda73","name":"Sneh Patel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1","url":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1","contentUrl":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1","width":672,"height":222,"caption":"Sneh Patel"},"logo":{"@id":"https:\/\/i0.wp.com\/snehpatel.com\/wp-content\/uploads\/2020\/09\/cropped-Slide4-1.jpg?fit=672%2C222&ssl=1"},"sameAs":["http:\/\/snehpatel.com"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts\/401","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/comments?post=401"}],"version-history":[{"count":0,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/posts\/401\/revisions"}],"wp:attachment":[{"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/media?parent=401"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/categories?post=401"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/snehpatel.com\/index.php\/wp-json\/wp\/v2\/tags?post=401"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}