真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Nginx怎么配置在線一鍵生成神器

這篇文章主要講解了“Nginx怎么配置在線一鍵生成神器”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Nginx怎么配置在線一鍵生成神器”吧!

創(chuàng)新互聯(lián)是專業(yè)的雷山網(wǎng)站建設公司,雷山接單;提供成都網(wǎng)站制作、做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行雷山網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

NGINX Config 支持 HTTP、HTTPS、PHP、Python、Node.js、WordPress、Drupal、緩存、逆向代理、日志等各種配置選項。在線生成 Web 服務器 Nginx 配置文件。

操作配置也非常簡單,你需要做的只需要2步:

  •  打開官方網(wǎng)站

  •  按需求配置相關參數(shù)

系統(tǒng)就會自動生成特定的配置文件。雖然界面是英文的,但是功能的頁面做的非常直觀,生成的Nginx格式規(guī)范。

登陸之后大概的界面如下:

Nginx怎么配置在線一鍵生成神器

案例展示

配置域名:mingongge.com 實現(xiàn)用戶訪問*.mingongge.com 域名時會自動跳轉(zhuǎn)到 mingongge.com 此配置,并且開啟http強制跳轉(zhuǎn)到https的配置。

Nginx怎么配置在線一鍵生成神器

Nginx怎么配置在線一鍵生成神器

這時,Nginx的配置就會實時自動生成在下面,我把生成的配置復制過來,如下:

/etc/nginx/sites-available/mingongge.com.conf  #文件名都給你按規(guī)則配置好了 server {  listen 443 ssl http2;  server_name mingongge.com;  # SSL  ssl_certificate /etc/letsencrypt/live/mingongge.com/fullchain.pem;  ssl_certificate_key /etc/letsencrypt/live/mingongge.com/privkey.pem;  ssl_trusted_certificate /etc/letsencrypt/live/mingongge.com/chain.pem;  # security  include nginxconfig.io/security.conf;  # additional config  include nginxconfig.io/general.conf;  }  # subdomains redirect  server {  listen 443 ssl http2;  server_name *.mingongge.com;  # SSL  ssl_certificate /etc/letsencrypt/live/mingongge.com/fullchain.pem;  ssl_certificate_key /etc/letsencrypt/live/mingongge.com/privkey.pem;  ssl_trusted_certificate /etc/letsencrypt/live/mingongge.com/chain.pem;  return 301 https://mingongge.com$request_uri;  }  # HTTP redirect  server {  listen 80;  server_name .mingongge.com;  include nginxconfig.io/letsencrypt.conf;  location / {  return 301 https://mingongge.com$request_uri;  }  }

非常的方便與快速。

官方還提供一些Nginx的基礎優(yōu)化配置,如下:

/etc/nginx/nginx.conf  # Generated by nginxconfig.io  user www-data;  pid /run/nginx.pid;  worker_processes auto;  worker_rlimit_nofile 65535;  events {  multi_accept on;  worker_connections 65535;  }  http {  charset utf-8;  sendfile on;  tcp_nopush on;  tcp_nodelay on;  server_tokens off;  log_not_found off;  types_hash_max_size 2048;  client_max_body_size 16M;  # MIME  include mime.types;  default_type application/octet-stream;  # logging  access_log /var/log/nginx/access.log;  error_log /var/log/nginx/error.log warn;  # load configs  include /etc/nginx/conf.d/*.conf;  include /etc/nginx/sites-enabled/*;  }

還有基于安全的配置,如下:

/etc/nginx/nginxconfig.io/security.conf  # security headers  add_header X-Frame-Options "SAMEORIGIN" always;  add_header X-XSS-Protection "1; mode=block" always;  add_header X-Content-Type-Options "nosniff" always;  add_header Referrer-Policy "no-referrer-when-downgrade" always;  add_header Content-Security-Policy "default-src * data: 'unsafe-eval' 'unsafe-inline'" always;  # . files  location ~ /\.(?!well-known) {  deny all;  }

都相當于是提供一些基礎的模板配置,可以根據(jù)自己的實際需求去修改。

感謝各位的閱讀,以上就是“Nginx怎么配置在線一鍵生成神器”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對Nginx怎么配置在線一鍵生成神器這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關知識點的文章,歡迎關注!


當前文章:Nginx怎么配置在線一鍵生成神器
網(wǎng)站地址:http://weahome.cn/article/pgoeio.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部