使用CentOS作為伺服器主機,完整架設流程
語系調整
查看目前語系
# localectl
可用的語系
# localectl list-locales | grep zh_
切換語系
# localectl set-locale LANG=zh_TW.UTF-8
自動校時
# yum install ntp
# timedatectl set-timezone Asia/Taipei
# chkconfig ntpd on
# ntpdate tick.stdtime.gov.tw
# systemctl enable ntpd
開機自動啟動httpd
# systemctl enable httpd.service
安裝PHP7
首先安裝yum repository
# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
接著安裝php及其他相關
# yum -y install php70w php70w-bcmath php70w-cli php70w-common php70w-dba php70w-devel php70w-embedded php70w-enchant php70w-fpm php70w-gd php70w-imap php70w-interbase php70w-intl php70w-ldap php70w-mbstring php70w-mcrypt php70w-mysqlnd php70w-odbc php70w-opcache php70w-pdo php70w-pdo_dblib php70w-pear php70w-pecl-apcu php70w-pecl-apcu-devel php70w-pecl-imagick php70w-pecl-imagick-devel php70w-pecl-xdebug php70w-pgsql php70w-phpdbg php70w-process php70w-pspell php70w-recode php70w-snmp php70w-soap php70w-tidy php70w-xml php70w-xmlrpc
安裝資料庫
# yum -y install mariadb-server mariadb
# systemctl start mariadb.service
# systemctl enable mariadb.service
設定資料庫密碼
# mysqladmin -u root password '密碼'
建立新帳號
CREATE USER 'root'@'我是IP' IDENTIFIED BY '我是密碼';
GRANT ALL ON *.* TO 'root'@'我是IP';
grant grant option on *.* to 'root'@'我是IP';
防火牆設定
設定常用的80、21、22、3306 port
# firewall-cmd --zone=public --permanent --add-port=80/tcp
# firewall-cmd --zone=public --permanent --add-port=21/tcp
# firewall-cmd --zone=public --permanent --add-port=22/tcp
# firewall-cmd --zone=public --permanent --add-port=3306/tcp
# service firewalld reload
Git
# yum install git
Composer
# curl -sS https://getcomposer.org/installer | php
# mv composer.phar /usr/local/bin/composer
挑選適合的網站字型,可以為您的網站質感加分不少,到底應該如何挑選合適的字型呢?接下來介紹由免費中文字型--思源黑體。
在centos中建立新帳號,限制只能使用sftp,並且只能使用指定的目錄,並保持apache可以正常運作Laravel專案。
了解什麼是SEO(搜尋引擎優化)。
許多網頁設計師及前端工程師在碰到需要無障礙標章的網站時,面對文謅謅的規範,經常像是無頭蒼蠅,跌跌撞撞的花費許多時間才得以成功取得標章,在此筆者整理一些要點
<a>標籤為超連結,是HTML標籤中最常使用到的標籤 href屬性為目標位置,可輸入絕對位置或相對位置 比較特別的是target屬性,設定連結的框架或視窗