Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public class SecurityConfig {
"/error",
"/api/auth/reissue",
"/ws-chat/**",
"/.well-known/acme-challenge/**" // SSL 인증을 위한 예외 추가
"/.well-known/acme-challenge/**", // SSL 인증을 위한 예외 추가
"/health"
};
private static final String[] SWAGGER_WHITELIST = {
"/swagger-ui/**", "/v3/api-docs/**"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.example.SucceSS.web.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/health")
public class HealthCheckController {
@GetMapping
public String healthCheck() {
return "health check ok";
}
}