Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Reference environment variables in jetty descriptors?

Hi 
have you tried something such <Env name="HOME"/>.?


On Tue, Jul 30, 2019 at 9:15 AM David Karlsen <davidkarlsen@xxxxxxxxx> wrote:
Is it possible to refer environment variables in jetty descriptors?
I am trying to avoid hardcoding proxy values in jetty-websocket-httpclient.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">

<Configure class="org.eclipse.jetty.client.HttpClient">
<Arg>
<New class="org.eclipse.jetty.util.ssl.SslContextFactory" />
</Arg>
<Get name="proxyConfiguration">
<Get name="proxies">
<Call name="add">
<Arg>
<New class="org.eclipse.jetty.client.HttpProxy">
<Arg type="String">HERE</Arg>
<Arg type="Integer">HERE</Arg>
</New>
</Arg>
</Call>
</Get>
</Get>
</Configure>

--
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/jetty-users


--
Olivier

Back to the top