Add error server

This commit is contained in:
Ajay
2024-04-16 03:01:44 -04:00
parent 2251ddc251
commit 7c51586664
4 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
return 503;
}
}