Skip to content

Instantly share code, notes, and snippets.

View anooj-gandham's full-sized avatar
🎯
Focusing

Anooj Gandham anooj-gandham

🎯
Focusing
View GitHub Profile
@anooj-gandham
anooj-gandham / simple-web-app.conf
Created July 13, 2021 17:24
Nginx configuration for simple web application
#A reverse proxy is server component that sits between the internet and your web servers.
#It accepts HTTP requests, provides various services, and forwards the requests to one or many servers.
#A reverse proxy can hide the topology and characteristics of your back-end servers by removing the need for direct internet access to them.
#This is basic Nginx configuration for reverse proxy for a simple web application.
#Configuration for Frontend
server {
listen 80;
server_name <Your Server Name>;
@anooj-gandham
anooj-gandham / check_rss.py
Created June 8, 2021 05:51
Search RSS/Feed url for a list of blogs
import pandas as pd
import time
from feedsearch import search
all_blogs = pd.read_csv('allBlogs')
no_res = []
url_res,url_rss = [],[]
for i in range(len(all_blogs)):
u = all_blogs['url_1'][i]