Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 675 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 675 Bytes

youtube-push-notifications

A callback server for YouTube Push Notifications using Bottle

A basic NGINX configuration

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    server_name example.com www.example.com;

    location / {
        proxy_pass http://localhost:8000;
    }
}

Resources