Question: insert into #tmp exec usp_xxxx 报错 The operation could not be performed because OLE DB provider "SQLNCLI11" for linked server "server_name" w ...
分类:
数据库 时间:
2020-01-16 14:46:48
阅读次数:
98
首先我们打开到nginx的config目录下 我这里是 /usr/local/nginx/config 然后我们ls之后展示目录 打开 nginx.config文件 往下面翻到server将localhost改变server_name 为自己linux系统的端口号 之后再server里面的locat ...
分类:
其他好文 时间:
2020-01-13 10:49:18
阅读次数:
75
Apache 版本 如果需要整站跳转,则在网站的配置文件的<Directory>标签内,键入以下内容: RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [ ...
分类:
Web程序 时间:
2020-01-03 00:20:29
阅读次数:
144
项目的入口文件index.html直接在服务器访问地址的根目录下,即项目独占一个端口 vue中配置保持不变 nginx中配置如下: server { listen 8899; server_name localhost; location / { try_files $uri $uri/ /inde ...
分类:
其他好文 时间:
2019-12-31 23:47:04
阅读次数:
196
全局配置段 http配置段 Server常见配置 listen的表示方式 形式 | 描述 | ip:port | 精确表示 ip | 自动监听80端口 port | 自动监听80端口 default_server | 自动使用默认地址localhost:80 server_name 作用:对不同的域 ...
分类:
其他好文 时间:
2019-12-27 00:01:58
阅读次数:
97
1、nginx 配置 server { listen 80; server_name laravel5-test.d.com; charset utf-8; location / { root D:/***/www/test/laravel55-test/public; index index.ph ...
分类:
Web程序 时间:
2019-12-19 11:26:37
阅读次数:
87
alias server { listen 80; server_name www.xxxpc.net ~^www\.site\d+\.net$; error_page 500 502 503 504 404 /50x.html; location /about { alias /data/ngin ...
分类:
其他好文 时间:
2019-12-15 21:47:26
阅读次数:
94
轮询方式 轮询方式是默认方式,每次请求都会平均分配#server_name 改为你的主机IP或域名。server { listen 80; server_name 172.16.2.101; location / { proxy_pass http://server_url; }}#需要负载的服务u ...
分类:
其他好文 时间:
2019-12-13 19:23:27
阅读次数:
102
#### gitlab反向代理 server { listen 80; server_name gitlab.hp.com; location / { proxy_pass http://192.168.5.119:8880; index index.html index.htm index.jsp ...
分类:
其他好文 时间:
2019-12-10 17:15:00
阅读次数:
136
1、准备好网站域名的https证书,后缀名如下,上传到服务器上。 xxx.pem xxx.key 2、配置nginx.conf server { listen 443 ssl; server_name scm.xxx.com; ssl on; ssl_certificate ./cert/cert. ...
分类:
Web程序 时间:
2019-12-05 19:01:44
阅读次数:
129