Added nginx CT

This commit is contained in:
2021-09-21 00:37:58 +00:00
parent 361661babf
commit f46df35d6d
12 changed files with 278 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
server {
listen 80;
listen [::]:80;
server_name DOMAINname;
#beginConf
add_header Content-Type text/html;
return 200 '<html><head></head><body>Nginx is config for DOMAINname is created</body></html>';
#endConf
}