nginx 配置静态网站

配置文件

server {
    listen 80;
    server_name www.xxxxxx.cn;
    access_log /data/logs/www.xxxxxx.cn_access.log;
    error_log /data/logs/www.xxxxxx.cn_error.log;

    location / {
        root   /opt/xxxxxx/hmds;
        index  index.html index.htm;
    }
}

你可能感兴趣的:(nginx)