This document has now been incorporated into the uWSGI documentation:
http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
Steps with explanations to set up a server using:
/* | |
* Napp Framework | |
* (c) 2012 Napp ApS | |
* www.napp.dk | |
* | |
* NAPP SQL ALLOY ADAPTER | |
* Dual SQLite/SQL sync adapter which will store all models in | |
* an on device database | |
*/ |
/** | |
* Debug : var_dump | |
* | |
* @var: Var | |
* @level: Level max | |
* | |
*/ | |
function var_dump(_var, _level) { | |
var dumped_text = ""; | |
if(!_level) _level = 0; |
#! /bin/bash | |
##################### | |
# Run this as root! # | |
##################### | |
yum update | |
yum groupinstall "Development Tools" | |
yum install zlib-devel readline-devel openssl-devel |
<?php | |
/** | |
* Copyright (c) 2007, Roger Veciana | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are met: | |
* | |
* Redistributions of source code must retain the above copyright notice, this |
### A modified sample logster parser file that can be used to count the number | |
### of response codes found in an Apache access log. | |
### | |
### For example: | |
### sudo ./logster --dry-run --output=ganglia ApacheLogster /var/log/httpd/access_log | |
### | |
### | |
### Copyright 2011, Etsy, Inc. | |
### | |
### This file is part of Logster. |
This playbook has been removed as it is now very outdated. |
Wes Winham [email protected]
There are many tutorials floating around the web that almost get you a dynamic VPN in EC2. The goal of this tutorial is to be a one-stop-shop for this specific setup.
bash -c ' | |
# | |
# make sure sudo users have the full path... | |
# | |
# sudo visudo | |
# Defaults env_keep += "PATH" | |
# Defaults !secure_path | |
# |