misskey-sorry-page/sorry.conf

18 lines
334 B
Plaintext

server {
listen 3000;
# エラーページの指定
error_page 503 /sorry.html;
# エラーページのファイルを提供
location = /sorry.html {
root /usr/share/nginx/html/;
internal;
}
# 全てのリクエストに対して503を返す
location / {
return 503;
}
}