Nginx Django4 初期設定まとめ>Nginx>情報科学

この記事 > Nginx > 情報科学
作成 更新

None


意味:

Nginx(二ジンクス)を使ったDjango4の初期設定をまとめています。

別名:

-

コマンド:


apt install nginx #インストール
nginx -v #バージョン確認
nginx version: nginx/1.14.0

nginx -t #ファイルの文法確認
systemctl enable nginx.service
systemctl status nginx.service
systemctl restart nginx #再起動して設定反映
systemctl daemon-reload

#設定ファイル用
cd /etc/nginx/
vim /etc/nginx/nginx.conf

cd /etc/nginx/conf.d
vim /etc/nginx/conf.d/testdjango.conf

cd /etc/nginx/sites-available
cd /var/www/static
vim pasta

nginx static files設定
server {

location /static/ {
root /var/www;
}

}

#Error logを見る
sudo cat /var/log/nginx/error.log
sudo tail -F /var/log/nginx/error.log

解説:

探究資料:


Django project.
nginx.org.

全文を読む


Django

Github

Python

Nginx

Windows

Linux

PostgreSQL

ウェブ

プログラミング

中学受験講座

高校受験講座

大学受験講座

社会人講座