Administrator
This chapter is special guide for Web Runtime maintenance and settings. And you can refer to Administrator and Steps after installing for some general settings that including: Configure Domain, HTTPS Setting, Migration, Web Server configuration, Docker Setting, Database connection, Backup & Restore...
FAQ
默认字符集是什么?
UTF-8
Nginx 虚拟主机配置文件是什么?
虚拟主机配置文件是 Nginx 用于管理多个网站的配置段集合,路径为:/etc/nginx/conf.d/default.conf。
每个配置段的形式为: server{ }
,有多少个网站就有多少个配置段
如何修改示例网站根目录?
修改 Nginx 虚拟主机配置文件 path
如果没有域名是否可以部署 Web 应用?
可以,访问http://服务器公网IP:端口号
即可
数据库对应的账号密码是多少?
密码存放在服务器相关文件中:/credentials/password.txt
是否有可视化的数据库管理工具?
有,内置 phpMyAdmin 和 adminMongo
如何修改上传的文件权限?
# 拥有者
chown -R nginx.nginx /data/wwwroot/
# 读写执行权限
find /data/wwwroot/ -type d -exec chmod 750 {} \;
find /data/wwwroot/ -type f -exec chmod 640 {} \;