FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
uwsgi/install.sh at master · unbit/uwsgi · GitHub
unbit
/
uwsgi
Public
Notifications
You must be signed in to change notification settings
Fork
697
Star
3.5k
Code
Issues
796
Pull requests
101
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
uwsgi
/
install.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
19 lines (17 loc) · 552 Bytes
Breadcrumbs
uwsgi
/
install.sh
Copy path
File metadata and controls
19 lines (17 loc) · 552 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
echo
"
*** uWSGI installer ***
"
if
[
$#
-ne
2 ]
then
echo
"
Usage: install.sh <profile> <binary_path>
"
exit
1
fi
if
[
${2
:
0
:
1}
!=
"
/
"
]
then
echo
"
uWSGI binary path must be absolute !!!
"
exit
1
fi
echo
"
downloading latest uWSGI tarball...
"
curl -o uwsgi_latest_from_installer.tar.gz https://projects.unbit.it/downloads/uwsgi-latest.tar.gz
mkdir uwsgi_latest_from_installer
tar zvxC uwsgi_latest_from_installer --strip-components=1 -f uwsgi_latest_from_installer.tar.gz
cd
uwsgi_latest_from_installer
UWSGI_PROFILE=
"
$1
"
UWSGI_BIN_NAME=
"
$2
"
make
Back
|
FazBrowse Home
|
New Git URL