io.higgs.http.server.config.HttpConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-s3 Show documentation
Show all versions of http-s3 Show documentation
Higgs HTTP S3 (Single Site Server)
package io.higgs.http.server.config;
import io.higgs.core.ServerConfig;
import io.higgs.http.server.protocol.HttpMethod;
import java.util.HashMap;
import java.util.Map;
public class HttpConfig extends ServerConfig {
public boolean add_form_url_decoder = true;
public boolean add_json_decoder = true;
public boolean enable_keep_alive_requests;
public String index_file = "index.html";
public boolean serve_index_file = true;
public boolean enable_directory_listing = true;
public String public_directory = "public";
public String security_config_path = "classpath:shiro.ini";
//
private Map errors = new HashMap<>();
public HttpConfig() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy