Skip to content

Instantly share code, notes, and snippets.

View mahammad-sixberries's full-sized avatar

Mahammad mahammad-sixberries

  • Ahmedabad, Gujarat, India
View GitHub Profile
@mahammad-sixberries
mahammad-sixberries / meta-tags.md
Created May 1, 2021 07:54 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@mahammad-sixberries
mahammad-sixberries / gist:bab37cc43e6da0ab10d5b2152014c890
Created April 27, 2021 09:51 — forked from tolleiv/gist:5176269
Sample config to have a Nginx as reverse proxy with a fallback host included
upstream tracker {
server localhost:81;
server localhost:82 backup;
}
# HTTP server
server {
listen 80 default;
location / {