diff --git a/nginx_securefit.conf b/nginx_securefit.conf index 0cdb06c..39db971 100644 --- a/nginx_securefit.conf +++ b/nginx_securefit.conf @@ -1,9 +1,10 @@ server { - listen 80; - server_name localhost; - + listen 80 default_server; + server_name localhost; + location / { return 200 "Nginx configuration deployed successfully!"; add_header Content-Type text/plain; } } +