Skip to content

Instantly share code, notes, and snippets.

@tckz
Created September 8, 2010 02:59
Show Gist options
  • Save tckz/569544 to your computer and use it in GitHub Desktop.
Save tckz/569544 to your computer and use it in GitHub Desktop.
GAE向けのbuild.xmlでproxy
JVM系
<target name="run" depends="compile"
description="Starts the development server.">
<dev_appserver war="war" port="3000" address="0.0.0.0">
<options>
<arg value="--jvm_flag=-Dhttps.proxyHost=proxy.example.com" /> <arg value="--jvm_flag=-Dhttps.proxyPort=8080" />
</options>
</dev_appserver>
</target>
appcfg系
<target name="request_logs"
description="Downloads log data from App Engine for the application.">
<appcfg action="request_logs" war="war">
<options>
<arg value="--proxy=proxy.example.com:8080" />
<arg value="--num_days=1"/>
</options>
<args>
<arg value="logs.txt"/>
</args>
</appcfg>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment