본문 바로가기
IT/Nginx

Nginx 50x 에러 처리를 위한 html

by 티티알 2023. 6. 13.

nginx 사용시 50x 에러에 대해 처리할 50x.html 내용 입니다

 

<!DOCTYPE html>
<html>
<head>
<title>Error</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>An error occurred.</h1>
<p>Sorry, the page you are looking for is currently unavailable.<br/>
Please try again later.</p>
<p>If you are the system administrator of this resource then you should check
the error log for details.</p>
<p><em>Faithfully yours, nginx.</em></p>
</body>
</html>

'IT > Nginx' 카테고리의 다른 글

Nginx 설치 직후 default.conf  (1) 2023.06.13
Nginx 설치 직후 /var/run/nginx.pid 퍼미션 오류  (0) 2023.06.13
Nginx 설치 후 기본 nginx.conf 설정 값  (1) 2023.06.13
Nginx Proxy  (0) 2021.05.12