This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration for reverse-proxied SSL site | |
server { | |
# General | |
listen 443 ssl default_server; | |
ssl on; | |
server_name YOUR.NAME.HERE; | |
# Logs | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
""" | |
This is a test script that creates a large object in memory several times and | |
tracks memory usage before and after to see how much python returns to system. | |
""" | |
import pickle | |
#import memory_profiler |