We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27e6d6 commit a5974bfCopy full SHA for a5974bf
README.md
@@ -142,11 +142,11 @@ import io.fusionauth.http.server.HTTPHandler;
142
import io.fusionauth.http.server.HTTPServer;
143
144
public class Example {
145
- private String certificate;
+ private static String certificate;
146
147
- private String privateKey;
+ private static String privateKey;
148
149
- public static void main(String[] args) {
+ public static void main(String[] args) throws Exception {
150
String homeDir = System.getProperty("user.home");
151
certificate = Files.readString(Paths.get(homeDir + "/dev/certificates/example.org.pem"));
152
privateKey = Files.readString(Paths.get(homeDir + "/dev/certificates/example.org.key"));
0 commit comments