nginx部署
- 依賴解決
安裝pcre庫(Perl Compatible Regular Expressions;perl相容正規表示式),為了使nginx支援具備URL重寫功能的Rewrite模組。
# yum -y install pcre pcre-devel
# yum -y install openssl openssl-devel gcc
- 依賴檢查
# rpm -qa pcre pcre-devel
- 服務安裝
# wget http://nginx.org/download/nginx-1.12.1.tar.gz
# tar axvf nginx-1.12.1.tar.gz
# useradd nginx -s /sbin/nologin -M
# cd nginx-1.12.1
# ./configure –help
# ./configure –user=nginx –group=nginx –with-http_ssl_module –with-http_stub_status_module –prefix=/usr/local/nginx-1.12.1/
# make
# make install
- 連結完善
# ln -sv /usr/local/nginx-1.12.1 /usr/local/nginx
- 服務啟動
# /usr/local/nginx/sbin/nginx -t
# /usr/local/nginx/sbin/nginx
- 功能檢測
WINDOS:瀏覽器直接輸入ip,即可出現nginx頁面;
LINUX:# curl -I 127.0.0.1
HTTP/1.1 200 OK
Server: nginx/1.12.1
Date: Sun, 03 Sep 2017 12:53:41 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Sun, 03 Sep 2017 12:35:56 GMT
Connection: keep-alive
ETag: “59abf72c-264”
Accept-Ranges: bytes
————————————————————-
轉載請保留此段宣告,且在文章頁面明顯位置給出原文連結,謝謝!
——————————————————————————
如果覺得這篇文章對你有小小的幫助的話,記得在右下角點個“推薦”哦,博主在此感謝!
——————————————————————————
相關文章
- [部署01] NginxNginx
- Nginx部署配置Nginx
- Ubuntu 部署 NginxUbuntuNginx
- nginx下部署showdocNginx
- 【Nginx】Nginx部署前端靜態資源Nginx前端
- 使用nginx部署網站Nginx網站
- nginx 寶塔 環境部署Nginx
- nginx部署vue專案NginxVue
- 【Nginx】Nginx反向代理和負載均衡部署Nginx負載
- nginx+gunicorn專案部署Nginx
- vue history路由模式 部署NginxVue路由模式Nginx
- Linux 部署 Nginx 服務LinuxNginx
- Nginx 部署靜態頁面Nginx
- nginx + uWSGI + flask應用部署NginxFlask
- Nginx https證書部署NginxHTTP
- 部署nginx php注意事項NginxPHP
- nginx 部署vue http、httpsNginxVueHTTP
- Nginx部署前端環境(Mac)Nginx前端Mac
- linux伺服器環境部署(三、docker部署nginx)Linux伺服器DockerNginx
- keeplied + nginx +tomcat 高可用部署NginxTomcat
- nginx使用熱部署新增新模組Nginx熱部署
- Forever +nginx部署Node站點Nginx
- nginx部署及簡單優化Nginx優化
- Nginx部署H5專案NginxH5
- DaemonSet方式部署nginx-ingressNginx
- nginx+Gunicorn部署Flask專案NginxFlask
- ssl 在nginx上的部署示例Nginx
- nginx部署(13:Permission denied)報錯Nginx
- python web 部署:nginx + gunicorn + supervisor + flask 部署筆記PythonWebNginxFlask筆記
- Nginx部署Vue前端專案,部署多個Vue專案NginxVue前端
- Nginx + Gunicorn 伺服器配置部署 DjangoNginx伺服器Django
- Ubuntu16.04 flask + nginx + uWSGI 部署UbuntuFlaskNginx
- uwsgi + nginx 部署python專案(一)NginxPython
- uwsgi + nginx 部署python專案(二)NginxPython
- 使用 Nginx 和 Gunicorn 部署 Django 部落格NginxDjango
- nginx部署vue專案方法總結NginxVue
- 使用 uWSGI 和 Nginx 部署 Django 專案NginxDjango
- 用uWSGI和Nginx部署Flask專案NginxFlask