Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nginx-push-stream-module
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
nginx-push-stream-module
Commits
f1a9309b
Commit
f1a9309b
authored
Mar 30, 2011
by
Rogério Carvalho Schneider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pack and build
parent
6679f69c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
build.sh
build.sh
+5
-4
pack.sh
pack.sh
+2
-2
No files found.
build.sh
View file @
f1a9309b
...
...
@@ -2,25 +2,26 @@
TAG
=
"
$1
"
NGINX_VERSION
=
"
$2
"
PREFIX
=
"nginx-push-stream-module"
NGINX_URL
=
"http://sysoev.ru/nginx"
CONFIGURE_OPTIONS
=
"
\
--with-http_stub_status_module
\
--add-module=nginx-push-stream-module"
WGET
=
"wget -c -N"
if
[[
-z
"
$TAG
"
||
-z
"
$NGINX_VERSION
"
]]
then
echo
"Usage:
$0
<tag> <nginx_version>"
echo
"Example:"
echo
"
$0
master 0.8.54"
echo
"
$0
master 0.7.68"
echo
"
$0
master 0.8.54"
echo
"
$0
master 0.7.68"
exit
1
fi
(
chmod
755
*
sh
&&
\
./pack.sh
$TAG
&&
\
cd
build
&&
\
wget
-N
-c
$NGINX_URL
/nginx-
${
NGINX_VERSION
}
.tar.gz
&&
\
$WGET
$NGINX_URL
/nginx-
${
NGINX_VERSION
}
.tar.gz
&&
\
rm
-rf
nginx-
${
NGINX_VERSION
}
&&
\
tar
xzvf nginx-
${
NGINX_VERSION
}
.tar.gz
&&
\
cd
nginx-
$NGINX_VERSION
&&
\
...
...
pack.sh
View file @
f1a9309b
#!/bin/bash
TAG
=
"
$1
"
PREFIX
=
"nginx-push-stream-module"
if
[[
-z
"
$TAG
"
]]
then
echo
"Usage:
$0
<tag>"
echo
"Example:"
echo
"
$0
master"
echo
"
$0
master"
exit
1
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment