2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DebianでNginxをインストールする

Posted at

本日はNginxというWebサーバーをダウンロードしました!
初めてWeb上に自分のHTMLが表示されたのを見たときは、感動しました( ͡° ͜ʖ ͡°)
見辛いかもしれませんが、工程をまとめたのでシェアします(_ _)

##DebianでNginxをインストールする

sudo apt install nginx

パッケージの公開鍵をダウンロードしてapt-keyで追加する

wget “http://nginx.org/keys/nginx_signing.key”

sudo apt-key add nginx_signing.key

nginxのサイトをリポジトリに追加する.

sudo vi /etc/apt/sources.list

開いたファイルに以下を追加.

deb http://nginx.org/packages/debian/ squeeze nginx

deb-src http://nginx.org/packages/debian/ squeeze nginx

###後は登録を反映して,
sudo apt-get update

OSのターミナルから

telnet localhost 80

Escape character is
が表示されたら
GET / HTTP/1.0

これでhtmlのタグ等が表示されたらnginxは起動している。

##自分のhtmlを表示させる
###まず設定ファイルを見る

sudo vi /etc/nginx/nginx.conf
を見ると
include /etc/nginx/sites-enabled/*;
がある

この行で
/etc/nginx/sites-enabled/default
を読んでいるのでそちらを見る

sudo vi /etc/nginx/sites-enabled/default

そちらを見ると

root /var/www/html;
とあるので
ls /var/www/html←ここにhtmlファイルを置けばいいことがわかる。

HTMLファイルの作り方、移動の仕方

$ vi ファイル名
でファイルを作り

$ mv ファイル名 /var/www/html
でファイルに階層を変える

これでアドレスを検索エンジンで入力すると先ほど追加したファイルが読まれる

※一応アンインストールのやり方も載せておきます

sudo apt-get remove nginx

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?