mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 18:56:15 +00:00
feat: added configuration for change upload port
feat: added configuration for use non SSL
This commit is contained in:
parent
4cf734fb61
commit
0ff6ea427a
@ -6,12 +6,15 @@ public final class Config {
|
||||
public int DispatchServerPort = 443;
|
||||
public String DispatchServerKeystorePath = "./keystore.p12";
|
||||
public String DispatchServerKeystorePassword = "";
|
||||
public Boolean UseSSL = true;
|
||||
|
||||
public String GameServerName = "Test";
|
||||
public String GameServerIp = "127.0.0.1";
|
||||
public String GameServerPublicIp = "";
|
||||
public int GameServerPort = 22102;
|
||||
|
||||
public int UploadLogPort = 80;
|
||||
|
||||
public String DatabaseUrl = "mongodb://localhost:27017";
|
||||
public String DatabaseCollection = "grasscutter";
|
||||
|
||||
|
@ -139,22 +139,28 @@ public final class DispatchServer {
|
||||
}
|
||||
|
||||
public void start() throws Exception {
|
||||
HttpsServer server = HttpsServer.create(getAddress(), 0);
|
||||
SSLContext sslContext = SSLContext.getInstance("TLS");
|
||||
HttpServer server;
|
||||
if(Grasscutter.getConfig().UseSSL) {
|
||||
HttpsServer httpsServer;
|
||||
httpsServer = HttpsServer.create(getAddress(), 0);
|
||||
SSLContext sslContext = SSLContext.getInstance("TLS");
|
||||
try (FileInputStream fis = new FileInputStream(Grasscutter.getConfig().DispatchServerKeystorePath)) {
|
||||
char[] keystorePassword = Grasscutter.getConfig().DispatchServerKeystorePassword.toCharArray();
|
||||
KeyStore ks = KeyStore.getInstance("PKCS12");
|
||||
ks.load(fis, keystorePassword);
|
||||
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
|
||||
kmf.init(ks, keystorePassword);
|
||||
|
||||
try (FileInputStream fis = new FileInputStream(Grasscutter.getConfig().DispatchServerKeystorePath)) {
|
||||
char[] keystorePassword = Grasscutter.getConfig().DispatchServerKeystorePassword.toCharArray();
|
||||
KeyStore ks = KeyStore.getInstance("PKCS12");
|
||||
ks.load(fis, keystorePassword);
|
||||
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
|
||||
kmf.init(ks, keystorePassword);
|
||||
sslContext.init(kmf.getKeyManagers(), null, null);
|
||||
|
||||
sslContext.init(kmf.getKeyManagers(), null, null);
|
||||
|
||||
server.setHttpsConfigurator(new HttpsConfigurator(sslContext));
|
||||
} catch (Exception e) {
|
||||
Grasscutter.getLogger().error("No SSL cert found!");
|
||||
return;
|
||||
httpsServer.setHttpsConfigurator(new HttpsConfigurator(sslContext));
|
||||
server = httpsServer;
|
||||
} catch (Exception e) {
|
||||
Grasscutter.getLogger().error("No SSL cert found!");
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
server = HttpServer.create(getAddress(), 0);
|
||||
}
|
||||
|
||||
server.createContext("/", t -> {
|
||||
@ -396,7 +402,7 @@ public final class DispatchServer {
|
||||
overseaLogServer.start();
|
||||
Grasscutter.getLogger().info("Log server (overseauspider) started on port " + 8888);
|
||||
|
||||
HttpServer uploadLogServer = HttpServer.create(new InetSocketAddress(Grasscutter.getConfig().DispatchServerIp, 80), 0);
|
||||
HttpServer uploadLogServer = HttpServer.create(new InetSocketAddress(Grasscutter.getConfig().DispatchServerIp, Grasscutter.getConfig().UploadLogPort), 0);
|
||||
uploadLogServer.createContext( // log-upload-os.mihoyo.com
|
||||
"/crash/dataUpload",
|
||||
new DispatchHttpJsonHandler("{\"code\":0}")
|
||||
@ -413,7 +419,7 @@ public final class DispatchServer {
|
||||
os.close();
|
||||
});
|
||||
uploadLogServer.start();
|
||||
Grasscutter.getLogger().info("Log server (log-upload-os) started on port " + 80);
|
||||
Grasscutter.getLogger().info("Log server (log-upload-os) started on port " + Grasscutter.getConfig().UploadLogPort);
|
||||
}
|
||||
|
||||
private Map<String, String> parseQueryString(String qs) {
|
||||
|
Loading…
Reference in New Issue
Block a user