Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Add how to enable extension hot reload feature
  • Loading branch information
filipocelka authored Jun 11, 2024
1 parent c734cdd commit 53ccbcb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,15 @@ By default, verification-site runs on port 8443. You should change it and most i
```bash
java -jar verification_site-<ver>.jar --server.port=443 --security.require-ssl=true --server.ssl.key-store=/etc/letsencrypt/live/example.com/keystore.p12 --server.ssl.key-store-password=<your-password> --server.ssl.keyStoreType=PKCS12 --server.ssl.keyAlias=tomcat
```
How to enable extension hot reload feature
=================
You can turn on/off extension hot reaload feature to be able to replace extension classes without restarting CAS.

:warning: Use this feature with caution as it may allow anyone with access to the server to change extension code on the fly.

To enable hot reload feature you need to modify `/batm/config/extensions` configuration file and set:

```
hot-reload=true
```

0 comments on commit 53ccbcb

Please sign in to comment.