11 lines
240 B
Plaintext
11 lines
240 B
Plaintext
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
|
|
|
|
} |