mirror of
https://github.com/moparisthebest/spdylay
synced 2024-11-14 05:25:07 -05:00
Add sample pac file and release script
This commit is contained in:
parent
040d1452ac
commit
757e6d7066
11
makerelease.sh
Executable file
11
makerelease.sh
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
VERSION=$1
|
||||||
|
PREV_VERSION=$2
|
||||||
|
|
||||||
|
git checkout refs/tags/release-$VERSION
|
||||||
|
git log --pretty=fuller --date=short refs/tags/release-$PREV_VERSION..HEAD > ChangeLog
|
||||||
|
|
||||||
|
./configure && \
|
||||||
|
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
|
||||||
|
make distclean
|
6
proxy.pac.sample
Normal file
6
proxy.pac.sample
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
function FindProxyForURL(url, host) {
|
||||||
|
// For SPDY proxy
|
||||||
|
return "HTTPS localhost:3000";
|
||||||
|
// For conventional HTTP proxy
|
||||||
|
// return "PROXY localhost:3000";
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user