But original post can not access anymore.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.sagedevices.platform.jersey.core; | |
import com.sagedevices.platform.api.util.StringUtil; | |
public class RequestId { | |
public static final String HEADER_NAME_ORIGIN = "X-Origin-Request-Id"; | |
public static final String HEADER_NAME_LOCAL = "X-Local-Request-Id"; | |
public static final String MDC_NAME_LOCAL = "LocalRequestId"; |