Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@evandhoffman
evandhoffman / nginx.conf
Last active August 29, 2015 14:08 — forked from thoop/nginx.conf
# Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats
# Change example.com (server_name) to your website url
# Change /path/to/your/root to the correct value
server {
listen 80;
server_name example.com;
root /path/to/your/root;
index index.html;
@evandhoffman
evandhoffman / SimpleHTTPServerWithUpload.py
Created December 6, 2018 17:56 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""