added note to scripts/setup-web2py-nginx-uwsgi-on-centos.sh, thanks Alan
This commit is contained in:
@@ -1 +1 @@
|
|||||||
Version 2.4.1-alpha.2+timestamp.2013.01.29.16.24.13
|
Version 2.4.1-alpha.2+timestamp.2013.01.29.16.27.18
|
||||||
|
|||||||
@@ -1,19 +1,43 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Script for installing Web2py with Nginx and Uwsgi on Centos 5
|
# -------------------------------------------------------------------
|
||||||
# Created By Hutchinson
|
# Description : Installation and basic configuration of web2py,
|
||||||
# Modified by spametki
|
# uWSGI, andNGINX.
|
||||||
# License: BSD
|
# in CentOS 5.x GNU/Linux
|
||||||
|
# Usage : Copy the script in /home/username and run it as root,
|
||||||
# It was originally posted in this web2py-users group thread:
|
# you may need to allow execution (chmod +x)
|
||||||
# https://groups.google.com/forum/?fromgroups#!topic/web2py/O4c4Jfr18tM
|
#
|
||||||
|
# WARNING: This script was modified to install compiled
|
||||||
# There are lots of subtleties of ownership, and one has to take care
|
# versions of Python and other packages that may be
|
||||||
# when installing python 2.6 not to stop the systems python2.4 from working.
|
# available at your Centos package repository.
|
||||||
|
# This change was made in order to get the latest
|
||||||
# NOTE: The only thing that should need changing for
|
# stable libraries available for avoiding compatibility
|
||||||
# each installation is the $BASEARCH (base architecture) of the machine.
|
# issues.
|
||||||
# This is determined by doing uname -i. This is needed for the nginx installation.
|
#
|
||||||
|
# It was originally posted in this web2py-users group
|
||||||
|
# thread: https://groups.google.com/forum/?fromgroups#
|
||||||
|
# !topic/web2py/O4c4Jfr18tM
|
||||||
|
#
|
||||||
|
# There are lots of subtleties of ownership, and one
|
||||||
|
# has to take care when installing python 2.6 not to
|
||||||
|
# stop the systems python2.4 from working.
|
||||||
|
#
|
||||||
|
# NOTE: The only thing that should need changing for
|
||||||
|
# each installation is the $BASEARCH (base
|
||||||
|
# architecture)
|
||||||
|
# of the machine. This is determined by doing uname -i.
|
||||||
|
# This is needed for the nginx installation.
|
||||||
|
#
|
||||||
|
# File : setup-web2py-nginx-uwsgi-on-centos.sh
|
||||||
|
# Author : Hutchinson
|
||||||
|
# Modified by : Alan Etkin
|
||||||
|
# Email : spametki@gmail.com
|
||||||
|
# Copyright : web2py
|
||||||
|
# Date : 2013-01-28
|
||||||
|
# Disclaimers : This script is provided "as is", without warranty of
|
||||||
|
# any kind.
|
||||||
|
# Licence : BSD
|
||||||
|
# -------------------------------------------------------------------
|
||||||
|
|
||||||
# Retrieve base architecture
|
# Retrieve base architecture
|
||||||
BASEARCH=$(uname -i)
|
BASEARCH=$(uname -i)
|
||||||
|
|||||||
Reference in New Issue
Block a user