当前位置: 首页> 健康> 科研 > 阳江招聘网前程无忧_海外网站建设教程_如何推广一个平台_收录查询站长工具

阳江招聘网前程无忧_海外网站建设教程_如何推广一个平台_收录查询站长工具

时间:2025/7/10 17:06:35来源:https://blog.csdn.net/zhuganlai168/article/details/143382345 浏览次数:0次
阳江招聘网前程无忧_海外网站建设教程_如何推广一个平台_收录查询站长工具

一、总体设计

在这里插入图片描述

  • dns服务器
  • nginx
  • satis web 静态页面
  • satis manage 管理程序

二、nginx配置

1、nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;events {worker_connections 1024;
}http {log_format  main  '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log  /var/log/nginx/access.log  main;sendfile            on;tcp_nopush          on;tcp_nodelay         on;keepalive_timeout   65;types_hash_max_size 4096;include             /etc/nginx/mime.types;default_type        application/octet-stream;# Load modular configuration files from the /etc/nginx/conf.d directory.# See http://nginx.org/en/docs/ngx_core_module.html#include# for more information.include /etc/nginx/conf.d/*.conf;server {listen       80;listen       [::]:80;server_name  _;root         /usr/share/nginx/html;# Load configuration files for the default server block.include /etc/nginx/default.d/*.conf;error_page 404 /404.html;location = /404.html {}error_page 500 502 503 504 /50x.html;location = /50x.html {}}
}

2、composer.conf

具体应用的配置,一般都是保存在路径/etc/nginx/conf.d。

在这里插入图片描述

server {listen 80;server_name composer.xx.com;set $root_path '/opt/satis/web';index index.html;root $root_path;autoindex on;access_log off;error_log off;location /api/ {proxy_pass http://localhost:8081;}}
  • satis静态页面对应目录/opt/satis/web
  • /api开头接口,转发到后端8081服务(即satis manage管理程序)

3、查看端口8081

端口8081对应的进程号是1342

[root@php_data conf.d]# ss -anlp | grep 8081
tcp    LISTEN     0      128    [::]:8081               [::]:*                   users:(("manage",pid=1342,fd=3))

在这里插入图片描述

根据进程号,进一步查看进程启动命令。

也即satis_manage
在这里插入图片描述

[root@php_data conf.d]# ps -ef | grep 1342
root      1342  1301  0 Jul28 ?        00:00:18 /opt/satis_manage/manage

下一步,我们将进入/opt/satis_manage,查看其配置。

三、satis_manage 管理程序

[root@php_data satis_manage]# ll /opt/satis_manage
total 17556
drwxr-xr-x 2 root root        42 Oct 31 08:49 conf
-rwxr-xr-x 1  501 games 17964865 Dec 15  2021 manage
-rw-r--r-- 1 root root     11742 Jul 28 08:47 supervisor.log

在这里插入图片描述
manage 是一个可执行应用程序。

看下conf的配置:
在这里插入图片描述

  • app.conf
AppName = satis_manage
HttpPort = 8081
RunMode = Prod
AutoRender = false
CopyRequestBody = true
# EnableDocs = true
EnableAdmin = true[satis]
configPath = "/opt/satis/satis.json"
buildShell = "/opt/satis/build.sh"

四、satis

在这里插入图片描述

1、build.sh

#/bin/bash
/usr/bin/php72 /opt/satis/bin/satis build /opt/satis/satis.json /opt/satis/web

2、satis.json

{"name": "私有Composer","homepage": "http://composer.xx.com","repositories": [{"type": "vcs","url": "git@192.168.50.25:php/lib-base.git"},{"type": "vcs","url": "git@192.168.50.25:php/serv-tp.git"},{"type": "vcs","url": "git@192.168.50.25:php/lib-auth.git"},{"type": "vcs","url": "git@192.168.50.25:php/lib-common-service-client.git"}],"config": {"secure-http": false}
}

在这里插入图片描述

五、验证

浏览器访问http://{ip} 默认80端口。

在这里插入图片描述
在这里插入图片描述

  • composer install --no-dev --ignore-platform-reqs --no-suggest -v

从私库下载二方包。

在这里插入图片描述

关键字:阳江招聘网前程无忧_海外网站建设教程_如何推广一个平台_收录查询站长工具

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: