8 lines
174 B
Nginx Configuration File
8 lines
174 B
Nginx Configuration File
server {
|
|
listen 80 default_server;
|
|
location / {
|
|
add_header Content-Type text/html;
|
|
return 200 "<html><body><h1>bepis</h1></body></html>";
|
|
}
|
|
|
|
} |