懂ni 发表于 2018-11-16 12:38:59

使用fpm制作nginx rpm包

├── after_install.sh  
├── after_remove.sh
  
├── etc
  
│   ├── rc.d
  
│   │   └── init.d
  
│   │       └── nginx
  
│   └── sysconfig
  
└── usr
  
    └── local
  
      └── nginx
  
            ├── conf
  
            │   ├── fastcgi.conf
  
            │   ├── fastcgi.conf.default
  
            │   ├── fastcgi_params
  
            │   ├── fastcgi_params.default
  
            │   ├── koi-utf
  
            │   ├── koi-win
  
            │   ├── mime.types
  
            │   ├── mime.types.default
  
            │   ├── nginx.conf
  
            │   ├── nginx.conf.default
  
            │   ├── scgi_params
  
            │   ├── scgi_params.default
  
            │   ├── uwsgi_params
  
            │   ├── uwsgi_params.default
  
            │   ├── vhost
  
            │   └── win-utf
  
            ├── html
  
            │   ├── 50x.html
  
            │   └── index.html
  
            ├── logs
  
            └── sbin
  
                └── nginx


页: [1]
查看完整版本: 使用fpm制作nginx rpm包