Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Readme.md of spring-helloworld sample #511

Merged
merged 1 commit into from
Dec 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions samples/spring-helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public class TransportConfiguration {

@Bean
public HTTPTransportConfig http(){
return new HTTPTransportConfig(6060);
return new HTTPTransportConfig(9090);
}

}
Expand All @@ -139,7 +139,7 @@ Alternatively it’s possible to use one of the following approach to change the
3. Provide port number through application.properties file
* Example: create a application.properties in the classpath and include http.port=9090 property.

Following are the list of configuration options supported by HTTPS transport.
Following are the list of configuration options supported by HTTP transport.

Option | Description
--- | --- |
Expand Down Expand Up @@ -174,7 +174,7 @@ Option | Description
enabled | Enable or disable the transport
port | HTTP port
host | Host to be bind with HTTP transport
keyStoreFile | Key store file to be used with HTTPS transport
keyStore | Key store file to be used with HTTPS transport
keyStorePass | Key store password
certPass | Certificate password

Expand Down