<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>海欣资源-企业信息化分享平台 - 网站源码</title>
    <link>https://www.haixinst.com/forum-63-1.html</link>
    <description>Latest 20 threads of 网站源码</description>
    <copyright>Copyright(C) 海欣资源-企业信息化分享平台</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Tue, 28 Apr 2026 16:09:19 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.haixinst.com/static/image/common/logo_88_31.gif</url>
      <title>海欣资源-企业信息化分享平台</title>
      <link>https://www.haixinst.com/</link>
    </image>
    <item>
      <title>网站如何通过nginx设置黑/白名单IP限制、国家城市IP访问限制</title>
      <link>https://www.haixinst.com/thread-854-1-1.html</link>
      <description><![CDATA[一、黑/白名单IP限制访问配置
nginx配置黑白名单有好几种方式，这里只介绍常用的两种方法。
1、第一种方法：allow、deny
deny和allow指令属于ngx_http_access_module，nginx默认加载此模块，所以可直接使用。
这种方式，最简单，最直接。设置类似防火墙iptable，使用方 ...]]></description>
      <category>网站源码</category>
      <author>Spring</author>
      <pubDate>Sat, 18 Jun 2022 08:34:37 +0000</pubDate>
    </item>
    <item>
      <title>转发和重定向是什么？</title>
      <link>https://www.haixinst.com/thread-815-1-1.html</link>
      <description><![CDATA[一、转发（forward）

    一种在服务器内部的资源跳转方式。
1. 实现步骤
    通过request对象获取请求转发器对象：RequestDispatcher，getRequestDispatcher(String path)
    然后使用RequestDispatcher对象来进行转发：forward(ServletRequest request, ServletResp ...]]></description>
      <category>网站源码</category>
      <author>Jenkins</author>
      <pubDate>Sun, 05 Jun 2022 11:01:18 +0000</pubDate>
    </item>
    <item>
      <title>cookie和session有什么不同？</title>
      <link>https://www.haixinst.com/thread-808-1-1.html</link>
      <description><![CDATA[cookie
1.什么是cookie
Cookie意为“甜饼”，是由W3C组织提出，最早由Netscape社区发展的一种机制。目前Cookie已经成为标准，所有的主流浏览器如IE、Netscape、Firefox、Opera等都支持Cookie。

2.为什么要用cookie
由于http协议是一种无状态的协议（客户端和服务端互相 ...]]></description>
      <category>网站源码</category>
      <author>dougang3473</author>
      <pubDate>Sun, 05 Jun 2022 08:07:08 +0000</pubDate>
    </item>
    <item>
      <title>nginx 静态资源优化配置方法</title>
      <link>https://www.haixinst.com/thread-788-1-1.html</link>
      <description><![CDATA[静态资源优化常用配置策略
下面提供几个常用的静态资源优化的配置指令，以供实战参考
    sendfile on;
    tcp_nopush on;
    tcp_nodeplay on;
    gzip on;

sendfile on;
tcp_nopush on;
tcp_nodelay on;

一、sendfile 指令
用来开启高效的文件传输模式


一个正 ...]]></description>
      <category>网站源码</category>
      <author>Jenkins</author>
      <pubDate>Sat, 04 Jun 2022 07:17:19 +0000</pubDate>
    </item>
    <item>
      <title>Docker入门学习教程</title>
      <link>https://www.haixinst.com/thread-733-1-1.html</link>
      <description><![CDATA[1. Docker概述
(1)基本介绍
Docker 是一个开源的应用容器引擎，基于 Go 语言 并遵从 Apache2.0 协议开源。
Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级、可移植的容器中，然后发布到任何流行的 Linux 机器上，也可以实现虚拟化。
容器是完全使用沙箱机制 ...]]></description>
      <category>网站源码</category>
      <author>docker</author>
      <pubDate>Tue, 31 May 2022 18:18:51 +0000</pubDate>
    </item>
    <item>
      <title>在Docker容器 如何安装 PHP</title>
      <link>https://www.haixinst.com/thread-732-1-1.html</link>
      <description><![CDATA[方法一、docker pull php
查找 Docker Hub 上的 php 镜像:

可以通过 Sort by 查看其他版本的 php，默认是最新版本 php:latest。
此外，我们还可以用 docker search php 命令来查看可用版本：
这里我们拉取官方的镜像,标签为5.6-fpm
runoob@runoob:~/php-fpm$ docker pu ...]]></description>
      <category>网站源码</category>
      <author>docker</author>
      <pubDate>Tue, 31 May 2022 17:55:05 +0000</pubDate>
    </item>
    <item>
      <title>PHP入门学习教程</title>
      <link>https://www.haixinst.com/thread-720-1-1.html</link>
      <description><![CDATA[1. PHP介绍
    PHP（全称：PHP：Hypertext Preprocessor，即\&quot;PHP：超文本预处理器\&quot;）是一种通用开源脚本语言。
    在一个php文件中可以包括以下内容：
    l PHP 文件可包含文本、HTML、JavaScript代码和 PHP 代码
    l PHP 代码在服务器上执行，结果以纯 HTML 形式 ...]]></description>
      <category>网站源码</category>
      <author>docker</author>
      <pubDate>Tue, 31 May 2022 09:35:24 +0000</pubDate>
    </item>
    <item>
      <title>Linux iptables命令使用说明</title>
      <link>https://www.haixinst.com/thread-700-1-1.html</link>
      <description><![CDATA[iptables 是 Linux 防火墙系统的重要组成部分，iptables 的主要功能是实现对网络数据包进出设备及转发的控制。当数据包需要进入设备、从设备中流出或者由该设备转发、路由时，都可以使用 iptables 进行控制。下面良许小编就将从几个方面对于Linux iptables命令进行详述 ...]]></description>
      <category>网站源码</category>
      <author>perll</author>
      <pubDate>Sun, 29 May 2022 14:00:29 +0000</pubDate>
    </item>
    <item>
      <title>B/S架构和C/S架构有什么不同？</title>
      <link>https://www.haixinst.com/thread-699-1-1.html</link>
      <description><![CDATA[一、B/S架构和C/S架构的定义
1、B/S（Browser-Server）浏览器和服务器架构。 (比如百度、微博、淘宝等网站)
包含寄户端浏览器、web应用服务器、数据库服务器的软件系统。用户只需要一个浏览器就可以访问服务。系统更新时候，只需要更新服务端，不需要更新浏览器 。

2、 ...]]></description>
      <category>网站源码</category>
      <author>perll</author>
      <pubDate>Sun, 29 May 2022 12:27:00 +0000</pubDate>
    </item>
    <item>
      <title>Nginx配置文件nginx.conf的配置方法</title>
      <link>https://www.haixinst.com/thread-626-1-1.html</link>
      <description><![CDATA[对于Nginx首先要了解的是Nginx的作用和它的代理方式，Nginx的作用为负载均衡、代理方式为反向代理。
       负载均衡：平衡web服务器集群中转发给各服务器的请求数，防止出现服务器因为处理请求压力大或小导致内存溢出、宕机或资源浪费的情况发生。
       反向代理：对 ...]]></description>
      <category>网站源码</category>
      <author>share</author>
      <pubDate>Sat, 21 May 2022 11:50:58 +0000</pubDate>
    </item>
    <item>
      <title>如何使用 Nginx 实现四层代理配置教程</title>
      <link>https://www.haixinst.com/thread-624-1-1.html</link>
      <description><![CDATA[一、基本介绍
平时我们在配置 Nginx 代理时，一般配置的都是基于 http 或是 https 协议的代理，也就是应用层。但是有些时候，我们并不想配置这种基于应用层的代理。比如说：我们要代理到数据库上，但是数据库是不支持应用层代理的。
所以，我们并不能像平常那样来配置， ...]]></description>
      <category>网站源码</category>
      <author>share</author>
      <pubDate>Sat, 21 May 2022 11:18:13 +0000</pubDate>
    </item>
    <item>
      <title>Linux命令的screen命令使用教程</title>
      <link>https://www.haixinst.com/thread-610-1-1.html</link>
      <description><![CDATA[一、screen命令简介
  Screen是一个全屏窗口管理器，它在多个进程（通常是交互式shell）之间多路传输物理终端。每个虚拟终端提供DEC VT100终端的功能，以及ANSI X3的几个控制功能。64（ISO 6429）和ISO 2022标准（例如，插入/删除行和支持多个字符集）。每个虚拟终端 ...]]></description>
      <category>网站源码</category>
      <author>share</author>
      <pubDate>Sat, 21 May 2022 05:39:38 +0000</pubDate>
    </item>
    <item>
      <title>错误信息：cannot call member function ‘ ‘ without object 解决方法</title>
      <link>https://www.haixinst.com/thread-558-1-1.html</link>
      <description><![CDATA[一、源码展示
std::vectorstd::string split（）函数报错：cannot call member function ’ ’ without object，如果直接引用没有对象，因为这里面的其他函数都是static，是写在头文件中的，没有实际的object，所以必须也要定义成static。
正是因为都放在头文件中实现， ...]]></description>
      <category>网站源码</category>
      <author>werother</author>
      <pubDate>Fri, 13 May 2022 17:20:58 +0000</pubDate>
    </item>
    <item>
      <title>如何在Windows下安装Nginx</title>
      <link>https://www.haixinst.com/thread-503-1-1.html</link>
      <description><![CDATA[一、前言
        Nginx 是一个很强大的高性能Web和反向代理服务，也是一种轻量级的Web服务器，可以作为独立的服务器部署网站，应用非常广泛，特别是现在前后端分离的情况下。而在开发过程中，我们常常需要在window系统下使用Nginx作为Web服务器。

二、下载Nginx
   1 ...]]></description>
      <category>网站源码</category>
      <author>dscca</author>
      <pubDate>Mon, 09 May 2022 17:58:19 +0000</pubDate>
    </item>
    <item>
      <title>Nginx配置使用教程</title>
      <link>https://www.haixinst.com/thread-502-1-1.html</link>
      <description><![CDATA[1、常用命令
需要进入nginx的安装目录中的sbin目录(也可以配置环境变量，在任何目录都可以执行下面的命令)，里面有一个nginx脚本文件

1、启动nginx
    ./nginx
2、关闭nginx
]]></description>
      <category>网站源码</category>
      <author>dscca</author>
<enclosure url="/forum/./nginx -s reload
4、查看版本号
" length="./ngi ..." type="image/jpeg" />      <pubDate>Mon, 09 May 2022 16:48:56 +0000</pubDate>
    </item>
    <item>
      <title>nginx 负载均衡配置教程</title>
      <link>https://www.haixinst.com/thread-500-1-1.html</link>
      <description><![CDATA[1、启动两个后端服务

这里准备了两个springboot工程，编写了2个测试使用的接口，以端口号区分
@RestController
@RequestMapping(\&quot;/api\&quot;)
public class NginxController1 {

    @GetMapping
    public String test1(){
        return \&quot;success test1 8082\&quot;;
    }

} ...]]></description>
      <category>网站源码</category>
      <author>dscca</author>
      <pubDate>Mon, 09 May 2022 15:49:30 +0000</pubDate>
    </item>
    <item>
      <title>使用Linux常用命令部署Web程序</title>
      <link>https://www.haixinst.com/thread-499-1-1.html</link>
      <description><![CDATA[一、使用Xshell
1、先要买一个云服务器获取外网ip，可以在打折的时候买
2、选镜像要选 centOs 的镜像
3、在官方下载Xshell ，官网地址：（https://www.xshell.com/zh/xshell/），下载的时候可以选择免费版的。
4、在Xshell中顶部新建会话，然后设置一些属性

5、然后就 ...]]></description>
      <category>网站源码</category>
      <author>dscca</author>
      <pubDate>Mon, 09 May 2022 15:34:25 +0000</pubDate>
    </item>
    <item>
      <title>将ts转换成js教程</title>
      <link>https://www.haixinst.com/thread-483-1-1.html</link>
      <description><![CDATA[一、提前准备
安装 typescript
使用国内镜像：
npm config set registry https://registry.npmmirror.com
安装 typescript：
npm install -g typescript
安装完成后我们可以使用 tsc 命令来执行 TypeScript 的相关代码，以下是查看版本号：
$ tsc -v
Version 3.2.2

二 ...]]></description>
      <category>网站源码</category>
      <author>wwwne</author>
      <pubDate>Sat, 07 May 2022 14:59:22 +0000</pubDate>
    </item>
    <item>
      <title>uniapp-input禁止软键盘弹出解决方法</title>
      <link>https://www.haixinst.com/thread-482-1-1.html</link>
      <description><![CDATA[方法一：使用uniapp自带方法uni.hideKeyboard()来隐藏软键盘


方法二：使用readonly属性规定输入字段为只读


方法三：使用document.activeElement.blur()移开焦点


方法四：通过div模拟input来实现
以上方法网上都有，但是都没有解决我的需求，下面是我使用的方法

 ...]]></description>
      <category>网站源码</category>
      <author>wwwne</author>
      <pubDate>Sat, 07 May 2022 14:53:15 +0000</pubDate>
    </item>
    <item>
      <title>postman如何配置token</title>
      <link>https://www.haixinst.com/thread-480-1-1.html</link>
      <description><![CDATA[postman配置token
用postman做接口测试的时候，会遇到token配置。下面介绍下token在postman中如何配置。
第一种在hearder中配置

在hearder中添加key值token，将登录之后value值粘贴到value处，并勾选此选项。

第二种在Authorization中配置token


在Authorization中选 ...]]></description>
      <category>网站源码</category>
      <author>wwwne</author>
      <pubDate>Sat, 07 May 2022 14:44:08 +0000</pubDate>
    </item>
  </channel>
</rss>