国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

前端 CentOS7 新服配置參考

junfeng777 / 710人閱讀

摘要:我自己搭服務(wù)器的偏好是,每次開新服都要執(zhí)行一遍環(huán)境配置,步驟繁多難免遺漏,總是發(fā)現(xiàn)缺東西了再去安裝。編輯,啟用以下幾行然后重啟服務(wù)啟動和它的朋友們最后,需要在的配置中添加一行像這樣下面是一些個人喜好,裝個。

我自己搭服務(wù)器的偏好是 CentOS,每次開新服都要執(zhí)行一遍環(huán)境配置,步驟繁多難免遺漏,總是發(fā)現(xiàn)缺東西了再去安裝。備個忘,再不煩惱。

本文介紹的組件包括:git, nginx, nodejs, fishshell,環(huán)境是 DigitalOcean 的 CentOS 7 鏡像(6就不管了,初建服務(wù)器你還不用最新版是何居心?)。

小安利下,我的DigitalOcean 推薦鏈接,注冊即得10美元(推薦雙方都有),開服愉快!

CentOS 新服務(wù)器

首先安裝 epel-release,各種軟件包都依賴于這個軟件源

$ yum update -y
$ yum install -y epel-release
$ yum install -y git
一點安全措施

啟用 SSH 密鑰登陸。編輯 ~/.ssh/authorized_keys,添加自己的公鑰進(jìn)去。

禁用密碼登陸。編輯 /etc/ssh/sshd_config,啟用以下幾行:

PubkeyAuthentication            yes
AuthorizedKeyFile               .ssh/authorized_keys
PasswordAuthentication          no
ChallengeResponseAuthentication no

然后重啟 sshd 服務(wù):

$ service sshd reload

https://www.liberiangeek.net/2014/07/enable-ssh-key-logon-disable-password-password-less-logon-centos/
http://serverfault.com/questions/285800/how-to-disable-ssh-login-with-password-for-some-users
http://askubuntu.com/questions/387892/how-to-deny-root-ssh-login-require-ssh-key-for-user

nginx 啟動!
$ yum install nginx -y

http://www.rackspace.com/knowledge_center/article/centos-adding-an-nginx-init-script

Node 和它的朋友們
$ yum install nodejs -y
$ curl https://www.npmjs.com/install.sh | sh
$ npm install -g n pm2

最后,需要在 ghost 的 nginx 配置中添加一行 client_max_body_size 10G; 像這樣:

server {
    listen       80;
    server_name  ~b(log)*.amio.us$;

    client_max_body_size 256M;
    
    # ...
}
Oh-my-fish!

下面是一些個人喜好,裝個 fish shell。

$ yum install yum-utils
$ yum-config-manager --add-repo http://fishshell.com/files/linux/RedHat_RHEL-6/fish.release:2.repo
# CentOS 7 用這個地址:
# http://download.opensuse.org/repositories/shells:fish:release:2/CentOS_7/shells:fish:release:2.repo
$ yum install fish -y

# 把默認(rèn) shell 改為 fish
$ chsh -s /usr/bin/fish

如果 fish 報告錯誤:
fish: Tried to print invalid wide character string

則編輯此文件:

$ vim /etc/sysconfig/i18n
# 把其中的 LANG=C 改為 LANG=en_GB.UTF-8

http://serverfault.com/questions/275403/how-do-i-change-my-locale-to-utf-8-in-centos

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/39205.html

相關(guān)文章

  • 前端 CentOS7 新服配置參考

    摘要:我自己搭服務(wù)器的偏好是,每次開新服都要執(zhí)行一遍環(huán)境配置,步驟繁多難免遺漏,總是發(fā)現(xiàn)缺東西了再去安裝。編輯,啟用以下幾行然后重啟服務(wù)啟動和它的朋友們最后,需要在的配置中添加一行像這樣下面是一些個人喜好,裝個。 我自己搭服務(wù)器的偏好是 CentOS,每次開新服都要執(zhí)行一遍環(huán)境配置,步驟繁多難免遺漏,總是發(fā)現(xiàn)缺東西了再去安裝。備個忘,再不煩惱。 本文介紹的組件包括:git, nginx, n...

    ky0ncheng 評論0 收藏0
  • 淺談滾服游戲如果實現(xiàn)一鍵合服

    摘要:而滾服游戲則一般會設(shè)計游戲在線上限,比如,達(dá)到上限則新開一組服務(wù)器,并引導(dǎo)用戶進(jìn)入新區(qū)。這就導(dǎo)致了新服一開,玩家即蜂擁而至,爭先恐后練級升裝備,以求最快速進(jìn)入排行榜前列,如果努力一番發(fā)現(xiàn)落后了,可能就只能坐等下一個新服。 原文地址-石匠的Blog:http://www.bugclosed.com/post/12 背景 近幾年的游戲行業(yè)中,出現(xiàn)了各種各樣的滾服游戲,包括頁游,手游,H5游...

    UnixAgain 評論0 收藏0
  • centos7安裝nginx并配置web前端環(huán)境。

    摘要:安裝啟動修改路徑配置,,我自己的項目放到了下。之后把打包好的前端項目放到配置的目錄下就。 1.安裝nginx ~sudo yum install nginx showImg(https://segmentfault.com/img/bVbcUsW?w=650&h=68); 2.啟動nginx ~ systemctl start nginx 3.修改nginx路徑配置,/etc/ngin...

    YorkChen 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<