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
server { | |
listen 80; | |
server_name example.com | |
*.example.com; | |
root /srv/www/myapp; | |
location / { | |
index index.html; | |
} |
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
worker_processes 2; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
sendfile on; | |
keepalive_timeout 3; | |
gzip on; |
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
[uwsgi] | |
plugins=python33 | |
socket=/var/uwsgi/uwsgi.myapp.socket | |
pythonpath=/srv/www/myapp | |
uid = www-data | |
gid = www-data | |
chmod-socket = 777 | |
chown-socket = www-data:www-data |
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
# standard way | |
mysqldump my_db -u root -p | gzip -c | cat > my_db.sql.gz | |
# append a timestamp to the filename | |
mysqldump my_db -u root -p | gzip -c | cat > my_db-$(date +%Y-%m-%d-%H.%M.%S).sql.gz |
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
# first line: | |
# =========== | |
# user/host (red if root, white if not) | |
# number of files in the current directory | |
# total size of files in current directory | |
# second line: | |
# ============ | |
# green benzene symbol if previous command succeeded | |
# solid red hexagon if previous command failed |
NewerOlder