SSL support
ONEWEB 4.0 supports SSL by setting up SSL/HTTPS on your server:
Generate key In general, you have two options to generate a key:
Using the Java Secure Socket Extension(JSSE)
The native implementation based on OpenSSL
In both cases, you have to configure keys and (self-signed) certificates for your web server.
Configure Wildfly In case generate a key from Step 1 output file from the previous step is "oneweb.keystore" then copy the key file to "[$JBOSS_HOME]/standalone/configuration/". Now edit file standalone.xml
![](https://docs.oneweb.tech/~gitbook/image?url=https%3A%2F%2F2015371994-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FMpDjHWFRUtZ5nJcSfVXd%252Fuploads%252FaweU11gbWRNyTRypXhNr%252Fimage.png%3Falt%3Dmedia%26token%3D0946b66c-fbd9-4a9a-83ce-ce1de789d942&width=768&dpr=4&quality=100&sign=1e9fb2da&sv=2)
Under the profile option, expand undertow subsystem, there are two main parts which are Server and Servlet container configuration. Add https-listener under server
![](https://docs.oneweb.tech/~gitbook/image?url=https%3A%2F%2F2015371994-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FMpDjHWFRUtZ5nJcSfVXd%252Fuploads%252FcrMzPR1zKhnuSvUeFOEI%252Fimage.png%3Falt%3Dmedia%26token%3Df14baae3-5a4e-41e6-9ee3-b5cc3d6ef90d&width=768&dpr=4&quality=100&sign=ee22c983&sv=2)
Under socket binding group Change Default WilfFly https port 8443 to 443.
![](https://docs.oneweb.tech/~gitbook/image?url=https%3A%2F%2F2015371994-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FMpDjHWFRUtZ5nJcSfVXd%252Fuploads%252FFxvPLKAX3qlm0c7cdcyJ%252Fimage.png%3Falt%3Dmedia%26token%3Dab1efec5-bd7e-453d-ad2e-87581aea3693&width=768&dpr=4&quality=100&sign=78fdea07&sv=2)
Last updated