1,准备工作
<p>①:先注册好小程序和备案好,这里不再赘述,申请注册教程在这 <a href="https://www.showdoc.com.cn/cfzhv3/10488533454913302">https://www.showdoc.com.cn/cfzhv3/10488533454913302</a></p>
<p>②:准备一台服务器,配置2核2M起步就行,就是放静态文件的,要求不高。如果你不想自己弄,也可以用我们自己服务器,我们给你分配一个临时空间,通过ftp控制传文件即可。</p>
<p>③:准备一个域名,这个域名必须是备案的,如果是你自己服务器,域名解析到你服务器ip上,如果用的是我们的服务器,那就解析到我们服务器上,我们官方ip为(39.174.170.81),如果不会解析,联系我微信(Dove981011512),我们全程为VIP全程提供免费服务!</p>
<p>④:如果是你自己的服务器,安装好宝塔,安装好nginx(建议编译安装,多等会,编译安装会有点久),把域名绑定上去,添加如下配置,
<img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=740c8e75098c2850acf13cd0e62a8fe5&amp;file=file.png" alt="" /></p>
<p>⑤:配置nginx代理</p>
<pre><code> location /ip {
default_type application/json;
return 200 &quot;{\&quot;data\&quot;:\&quot;$remote_addr\&quot;}&quot;;
}
location ~ /(ucenterAdmin|ucenter|payAdmin|pay|validationAdmin|validation|fileAdmin|file|internetOfThingsAdmin|internetOfThings|wisdomCommunityAdmin|wisdomCommunity|chatAdmin|chat)/.*$ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-For $http_x_forwarded_for;
proxy_pass http://gateway;
}</code></pre>
<p>效果如下图</p>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=08477a26427e0b39a9d5b1348dbe8724&amp;file=file.png" alt="" /></p>
<pre><code>upstream gateway {
server 39.174.170.81:8070 weight=10;
}</code></pre>
<p>效果如下图</p>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=f08fd74f11b7aeb59de2767adef1176a&amp;file=file.png" alt="" /></p>
<p>⑥:配置ssl
如果你有ssl证书,直接复制过来,如果没有ssl证书,用宝塔提供免费的就行了
<img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=12fb89aecfc3307b0561165fd32614f1&amp;file=file.png" alt="" /></p>