通过私钥访问服务器 ssh -i 私钥路径 root@xxxx
查找nginx路径:find /|grep nginx.conf
进入nginx编辑:
1、全局:vim /etc/nginx/nginx.conf
2、独立配置:/etc/nginx/sites-enabled/文件下独立配置
sites-enabled
这个文件夹一般在你需要建立和管理多个站点的时候的时候适应,可以帮助你更好的组织不同的项目。你需要在这里添加你的nginx配置文案并将他们链接至 sites-enabled 目录下
重启nginx: /etc/init.d/nginx restart
查看log:tail -f /var/log/nginx/error.log
例如:
server {
listen 8888(端口号);
server_name localhost(域名或者ip);
#配置gzip压缩访问
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_comp_level 5;
gzip_types text/plain application/xml application/x-javascript application/javascript text/javascript text/css image/jpeg image/gif image/png application/json;
root /var/www/html/dist;(项目打包后在服务器的地址)
location / {
index index.html;
#跨域配置
set $origin '*';
if ($http_origin) {
set $origin "$http_origin";
}
add_header 'Access-Control-Allow-Origin' $origin always;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PATCH, DELETE, PUT, OPTIONS';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,api-token,content-type,API-TOKEN';
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
# 找不到配置文件显示404
try_files $uri $uri/ =404;
}
}