1. 程式人生 > 其它 >Nginx常用命令和配置

Nginx常用命令和配置

常規配置

server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location /{
            root   'E:\\WorkSpace\\Python_worksapce\\wyyun';
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
	
server{
	listen 90;
	server_name localhost;
	# 擁有域名時使用如下格式: 
	# server_name www.baidu.com;
	
	location / {
		# 檔案儲存地址
		root   'E:\\WorkSpace\\uni-app\\Uni-app_Study\\next-superhero-dev\\unpackage\\dist\\build\\h5';
        index  index.html index.htm;
		}
	}

常用命令

命令 註釋
nginx -c /usr/local/nginx/conf/nginx.conf 啟動nginx(windows下start nginx)
nginx -s quit 停止ngix
nginx -s reload 重新載入nginx(當配置資訊發生修改時)
nginx -s reopen 開啟日誌檔案
nginx -v 檢視版本
nginx -t 檢查配置是否正確
nginx -h 檢視幫助資訊

參考連結:https://blog.csdn.net/binginsist/article/details/58008995

不考慮業務場景,一味的爭執技術的高下,都是耍流氓。