This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Concourse Service | |
| After=postgresql.service | |
| [Service] | |
| ExecStart=/usr/local/concourse/bin/concourse web \ | |
| --external-url="http://192.168.99.1:58080" \ | |
| --bind-ip="0.0.0.0" \ | |
| --postgres-database=concourse \ | |
| --postgres-host=localhost \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @SpringBootApplication | |
| public class Application { | |
| public static void main(String[] args) throws Exception { | |
| Ssl.useTrustStore(Thread.currentThread().getContextClassLoader().getResourceAsStream("mypubkey.jks")); | |
| Ssl.useTrustStorePassword("mypubpass"); | |
| SpringApplication.run(SslclientApplication.class, args); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ConfigurationProperties("eureka.instance") | |
| public class ConfigurableEurekaInstanceConfigBean extends | |
| EurekaInstanceConfigBean { | |
| private static final Log logger = LogFactory | |
| .getLog(ConfigurableEurekaInstanceConfigBean.class); | |
| private String preferIp4Segment; | |
| private String[] hostInfo; |