男女精品视频_黄网站免费在线_一区二区三区精品_51ⅴ精品国产91久久久久久_国产91在线免费观看_日韩中文字幕一区二区

首頁企業服務使用 Nginx 搭建靜態網頁服務使用 Nginx 搭建靜態網頁服務

使用 Nginx 搭建靜態網頁服務


使用 搭建靜態網頁服務本身是一件非常簡單的事,但是我之前在 CSDN 找了幾篇教程,弄了一下午也沒弄好(不愧是屎山淘金),學了一段時間后端和 后,我大概只用了五分鐘就弄好了,這里寫一篇文章來幫助一下小白。

閱讀須知

在閱讀本文章前,你需要準備以下內容

掌握基礎的 命令行操作 (本文章將介紹如何在 服務器上部署靜態網頁,需要進行終端操作,因此你必須掌握命令行的使用。如果你打算使用 ,請查閱其他文章。)擁有一臺 服務器 (可以購買 VPS 也可以使用 虛擬機 本文章以 VPS 為例,并購置了域名 (域名非必須) )擁有一個靜態網站的源碼 (如果僅僅作為學習目的,你可以寫一個簡單的 HTML 文件,這里以使用 hexo 生成的靜態網站為例。)知道 是什么,有什么用 (不需要掌握 )

不同 發行版下命令會有所區別,本文章以 .04 為例

準備服務器

如果你已經有了一臺服務器并安裝好了 ,你可以直接跳過這一部分,但是如果你的服務器是新的,沒有經過任何配置,請參閱以下內容進行配置。

升級系統

sudo apt update && sudo apt upgrade

安裝

sudo apt install nginx

啟動

sudo systemctl start nginx
# 開機自動啟動
sudo systemctl enable nginx

測試服務

直接在瀏覽器訪問你服務器的 ip,如果你部署了 DNS 服務的話,你也可以直接使用域名。如果哦看到 的歡迎界面,服務器準備成功!

將網站源碼發送到服務器

這一步可以有很多的選擇,你可以通過 來 ,也可以直接使用一些 ftp 工具。這里演示使用 tar 打包并使用 scp 上傳。

打包壓縮源文件

當然,你可以使用其他指令打包壓縮或者不壓縮,這里使用 xz 壓縮以節省網絡流量。

tar -Jcv -f site.tar.xz public/

將壓縮包上傳到服務器

scp site.tar.xz root@test.aimerneige.com:~/

在服務器解壓壓縮包

通常,我們會將靜態網站的源文件放置在 /var/www/ 這個目錄下,但是你也可以放置在家目錄或其他你喜歡的位置下。

tar -Jxv -f site.tar.xz -C ./
sudo mv public/ /var/www/blog

配置

本文章并不會介紹如何使用 ,并且閱讀本文章并不需要掌握 ,你只需要了解 有什么用即可。因為如果只是部署一個簡單的靜態網頁,只需要簡單修改默認配置即可。如果你想了解更多關于 的內容請查閱其他文章。

修改配置

直接使用 vim 修改默認的配置文件即可。 如果你沒有安裝 vim ,執行 sudo apt vim 來安裝它,當然你也可以使用自己喜歡的編輯器。

sudo vim /etc/nginx/sites-available/default

找到這一行:

    root /var/www/html;

修改為源文件所在目錄:

    root /var/www/blog;

如果你需要配置域名,找到這一行:

    server_name _;

將 _ 修改為你的域名。

檢查配置是否正確

sudo nginx -t

如果得到類似如下的輸出,則證明配置文件沒有錯誤。

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

如果你的配置文件出現了問題,請重新修改。

重啟

sudo nginx -s reload

檢查站點

重新訪問你的服務器 ip 或域名,檢查服務是否成功部署。

后記為什么 的配置文件要這樣改

的默認配置文件位于 /etc// 目錄下,主配置文件為 .conf

我們首先看一下默認的主配置文件

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}


#mail {
#    # See sample authentication script at:
#    # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
#    # auth_http localhost/auth.php;
#    # pop3_capabilities "TOP" "USER";
#    # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#    server {
#        listen     localhost:110;
#        protocol   pop3;
#        proxy      on;
#    }
#
#    server {
#        listen     localhost:143;
#        protocol   imap;
#        proxy      on;
#    }
#}

去掉全部的注釋

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
}

http {

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    gzip on;

    xml application/xml application/xml+rss text/javascript;

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

默認的服務為什么可以跑呢?注意這一行:

    include /etc/nginx/sites-enabled/*;

切換到 /etc//-/ 目錄下,并查看文件

cd /etc/nginx/sites-enabled/
ls

我們會發現只有一個 文件

查看它的內容:

##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

# Default server configuration
#
server {
    listen 80 default_server;
    listen [::]:80 default_server;

    # SSL configuration
    #
    # listen 443 ssl default_server;
    # listen [::]:443 ssl default_server;
    #
    # Note: You should disable gzip for SSL traffic.
    # See: https://bugs.debian.org/773332
    #
    # Read up on ssl_ciphers to ensure a secure configuration.
    # See: https://bugs.debian.org/765782
    #
    # Self signed certs generated by the ssl-cert package
    # Don't use them in a production server!
    #
    # include snippets/snakeoil.conf;

    root /var/www/html;

    # Add index.php to the list if you are using PHP
    index index.html index.htm index.nginx-debian.html;
    # index test.json;

    server_name _;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    # pass PHP scripts to FastCGI server
    #
    #location ~ \.php$ {
    #    include snippets/fastcgi-php.conf;
    #
    #    # With php-fpm (or other unix sockets):
    #    fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
    #    # With php-cgi (or other tcp sockets):
    #    fastcgi_pass 127.0.0.1:9000;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny all;
    #}
}


# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
#    listen 80;
#    listen [::]:80;
#
#    server_name example.com;
#
#    root /var/www/example.com;
#    index index.html;
#
#    location / {
#        try_files $uri $uri/ =404;
#    }
#}

去掉注釋:

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/html;

    index index.html index.htm index.nginx-debian.html;

    server_name _;

    location / {
        try_files $uri $uri/ =404;
    }
}

我相信哪怕沒有學習過 應該也能理解部分含義。

接下來我們看一下 /var/www/html 這個目錄

cd /var/www/html
ls

只有一個 .-.html 文件,正是歡迎界面的源代碼。


<html>
<head>
<title>Welcome to nginx!title>
<style>
    body {
        width: 48em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
style>
head>
<body>
<h1>Welcome to Nginx!h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.orga>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.coma>.p>

<p><em>Thank you for using nginx.em>p>
body>
html>

回到 /etc//-/ 目錄下,我想你應該明白應該修改什么了吧。

server {
    listen 80;

    server_name example.com;

    location / {
        proxy_pass http://localhost:3000/;
    }
}


主站蜘蛛池模板: www.4567| 亚洲精品一区二区 | 91人人视频在线观看 | 91免费视频 | 爱综合 | 久久精品亚洲 | 一本色道精品久久一区二区三区 | 91精品在线播放 | 国产成人精品一区二区 | 精品国产99 | 亚洲精品视频在线看 | 欧美精品久久久久久久久久 | 欧美日韩一区二区三区四区 | 第四色影音先锋 | 欧美看片 | 久久久久久久久久久久久91 | 超碰520| 亚洲美女天堂网 | 一二三区av | 精品国产欧美 | 免费一二区 | 狠狠干网| 蜜桃精品视频在线 | av在线成人 | 久久综合亚洲 | 视频一区二区在线观看 | 国产精品v | 一级在线观看 | 四虎影院欧美 | 91精品国产欧美一区二区 | 国产黄色小视频在线观看 | 国产精品久久久久一区二区三区 | 欧美成人一区二区三区 | 国产精品久久久久久久久 | 久久综合888| 免费一级欧美在线观看视频 | 我要看免费一级毛片 | 国产精品久久久久久久免费观看 | 99久久国产| a欧美| 伊人精品在线 |