2024-05-09
规避请求方式的方法 2024-05-09 ~ 2024-05-09
vue-cli请求拦截器中添加以下代码 1 2 3 4 if (config.method === 'delete' || config.method === 'put' || config.method === 'option') { config.headers['ORIGINAL_METHOD'] = config.method.toUpperCase(); config.method = 'POST' } Nginx请求中的配置 location /xxxx请求/{ # 还原原始请求方法 set $ori_method $request_method; if ($http_ORIGINAL_METHOD != '')
2024-05-09
Nginx常用命令 2024-05-09 ~ 2024-05-09
Linux下常用命令 1 2 3 4 5 6 7 8 9 10 11 12 # 首先进入Nginx的安装目录,一般情况下安装目录为 /usr/local/local/sbin # 查看版本 ./nginx -v # 启动 ./nginx # 重启 ./nginx -s reopen # 重新载入配置文件 ./nginx -s reload # 查
2024-05-09
Nginx常用基础配置 2024-05-09 ~ 2024-05-09
基础配置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 user root; worker_processes 1; events { worker_connections 10240; } http { log_format '$remote_addr - $remote_user [$time_local] ' '"$request" $status $body_bytes_sent ' '"$http_referer" "$http_user_agent"'; include mime.types; default_type application/octet-stream; sendfile on; #autoindex on; #autoindex_exact_size off; autoindex_localtime on; keepalive_timeout 65; gzip on; gzip_disable "msie6";
2024-05-09
Linux下安装Nginx 2024-05-09 ~ 2024-05-09
下载Nginx 下载地址:【http://nginx.org/en/download.html】 解压并放到服务器上 进入Nginx目录 1 2 3 4 # 如果出现 -bash: ./configure: Permission denied 则执
2024-05-09
Linux访问web目录提示403的问题 2024-05-09 ~ 2024-05-09
在Linux下http服务Nginx时,访问Web目录提示403Foridden,403表示你在请求一个资源文件但是Nginx不允许你查看。 解决办法 找到ngin