123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- # mirror link
- mirror_link=https://mirrors.oneinstack.com
- # set the default timezone
- timezone=Asia/Shanghai
- # Nginx Apache and PHP-FPM process is run as $run_user(Default "www"), you can freely specify
- run_user=www
- # Nginx Apache and PHP-FPM process is run as $run_group(Default "www"), you can freely specify
- run_group=www
- # set the default install path, you can freely specify
- nginx_install_dir=/usr/local/nginx
- tengine_install_dir=/usr/local/tengine
- openresty_install_dir=/usr/local/openresty
- caddy_install_dir=/usr/local/caddy
- apache_install_dir=/usr/local/apache
- tomcat_install_dir=/usr/local/tomcat
- mysql_install_dir=/usr/local/mysql
- mariadb_install_dir=/usr/local/mariadb
- percona_install_dir=/usr/local/percona
- pgsql_install_dir=/usr/local/pgsql
- mongo_install_dir=/usr/local/mongodb
- php_install_dir=/usr/local/php
- nodejs_install_dir=/usr/local/node
- pureftpd_install_dir=/usr/local/pureftpd
- memcached_install_dir=/usr/local/memcached
- redis_install_dir=/usr/local/redis
- openssl_install_dir=/usr/local/openssl
- imagick_install_dir=/usr/local/imagemagick
- gmagick_install_dir=/usr/local/graphicsmagick
- curl_install_dir=/usr/local/curl
- freetype_install_dir=/usr/local/freetype
- apr_install_dir=/usr/local/apr
- # Add modules
- nginx_modules_options=''
- php_modules_options=''
- #########################################################################
- # database data storage directory, you can freely specify
- mysql_data_dir=/data/mysql
- mariadb_data_dir=/data/mariadb
- percona_data_dir=/data/percona
- pgsql_data_dir=/data/pgsql
- mongo_data_dir=/data/mongodb
- # web directory, you can customize
- wwwroot_dir=/data/wwwroot
- # nginx Generate a log storage directory, you can freely specify.
- wwwlogs_dir=/data/wwwlogs
- #########################################################################
- # [MySQL/MariaDB/Percona] automatically generated, You can't change
- dbrootpwd=
- # [PostgreSQL] automatically generated, You can't change
- dbpostgrespwd=
- # [MongoDB] automatically generated, You can't change
- dbmongopwd=
- #########################################################################
- # Backup Dest directory, change this if you have someother location
- backup_dir=/data/backup
- # How many days before the backup directory will be removed
- expired_days=5
- # local,remote,oss,cos,upyun,qiniu,s3,gdrive,dropbox
- backup_destination=
- # db ; web, You can't change
- backup_content=
- # aliyun OSS Bucket, You can't change
- oss_bucket=
- # qcloud OSS Bucket, You can't change
- cos_bucket=
- # qiniu Bucket, You can't change
- qiniu_bucket=
- # Amazon S3 Bucket, You can't change
- s3_bucket=
- # The backup of the database, You can't change
- db_name=
- # The backup of the website, You can't change
- website_name=
- # oneinstack.tar.gz md5, You can't change
- oneinstack_md5=
|