Skip to content

marcosblandim/wildfly-local-https

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 

Repository files navigation

Wildfly Local HTTPS

How to setup local HTPPS on a Wildfly server

References

Local certification

  1. install mkcert
  2. execute the following command to generate a local certificate authority (CA)
mkcert -install # it adds mkcert to your local root CAs
  1. restart your browser
  2. navigate to <wildfly_folder>/standalone/configuration
  3. execute the following command to create 2 .pem files: localhost.pem and localhost-key.pem
mkcert localhost

the command above also signs this certificate

Configure Wildfly

  1. navigate to <wildfly_folder>/standalone/configuration
  2. execute the following command with the two .pem files generated in the previous topic
openssl pkcs12 -export -out wildfly-pkcs12.pfx -in localhost.pem -inkey localhost-key.pem

this will generate the file wildfly-pkcs12.pfx

  1. type a password
  2. make the following changes to your Wildfly's standalone.xml file
    1. add the above <security-realm> to the <security-realms> element; remenber to replace <your-password> with the password typed previous topic
    <security-realm name="UndertowRealm">
      <server-identities>
         <ssl>
           <keystore path="wildfly-pkcs12.pfx" relative-to="jboss.server.config.dir" keystore-password="<your-password>" />
         </ssl>
       </server-identities>
     </security-realm>
    1. locate the configuration for the undertow subsystem and update the attribute "security-realm" of its child element <https-listener> to "UndertowRealm"
    <subsystem xmlns="urn:jboss:domain:undertow:8.0" default-server="default-server" default-virtual-host="default-host" default-servlet-container="default" default-security-domain="other" statistics-enabled="${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}">
      <buffer-cache name="default"/>
      <server name="default-server">
        <http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
        <https-listener name="https" socket-binding="https" security-realm="UndertowRealm" enable-http2="true"/>
        <host name="default-host" alias="localhost">
          <location name="/" handler="welcome-content"/>
          <http-invoker security-realm="ApplicationRealm"/>
        </host>
      </server>
      <servlet-container name="default">
        <jsp-config/>
        <websockets/>
      </servlet-container>
      <handlers>
        <file name="welcome-content" path="${jboss.home.dir}/welcome-   content"/>
      </handlers>
    </subsystem>
  3. start/restart your Wildfly server
  4. you can access you site via HTTPS in https://localhost:8443

About

How to setup a local Wildfly HTTPS server

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published