【Nginx】输出/返回 HelloWorld

ngixn输出/返回 HelloWorld配置如下:

location / {
    #设置content type
    default_type text/html ;
    # HTTP Status Code 和 内容 
    return 200  "hello world! ";
}

你可能感兴趣的:(nginx)