摘要:
把lamp环境搭建在一台服务器中,(非分布式) 1.使用yum安装httpd mariadb php [root@localhost ~]# yum -y install httpd mariadb-server mariadb php php-mysql 2.开启服务 [root@localhos 阅读全文
摘要:
环境: 主机名 | IP地址 |部署服务 | | | root@httpd|192.168.1.61 | httpd网站服务 root@mysql|192.168.1.62|mysql数据库| root@php|192.168.1.63|php动态页面 一.搭建httpd服务(192.168.1.6 阅读全文
摘要:
一.开启Apache的gzip(deflate)功能 gzip 可以极大的加速网站,有时压缩比率高到 80%,最少都有 40%以上. 1.查看是否启用mod_deflate [root@httpd ~]# apachectl -M | grep deflate 如果有显示,则表示已启用压缩;如果没有 阅读全文
摘要:
nginx版本为:nginx/1.18.0 全局配置文件:/etc/nginx/nginx.conf 虚拟主机配置:/etc/nginx/conf.d/*.conf 1.搭建虚拟主机 [root@localhost ~]# cd /etc/nginx/conf.d/ [root@localhost 阅读全文
摘要:
Git简介: Git 是目前世界上最先进的分布式版本控制系统。(作者:林纳斯 托瓦兹) 版本控制系统分类: 集中式:代码集中存储在中央服务器,开发者的客户端只有部分自己的代码,假如中央服务器出问题,会出现数据丢失。传统的版本控制系统:CVS SVN 分布式:每台服务器都拥有所有代码,任意一台服务器崩 阅读全文
摘要:
1.基本优化 #user nobody; worker_processes 2; worker_cpu_affinity 01 10; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error 阅读全文