安装nginx

在安装nginx前首先要确认系统中安装了gcc、pcre-devel、zlib-devel、openssl-devel。

Linux下检查是否安装过某软件包:http://www.cnblogs.com/xxoome/p/5866553.html

安装命令:

yum -y install gcc pcre-devel zlib-devel openssl openssl-devel

解压:tar -zxvf nginx-1.18.0.tar.gz

进入nginx的目录:`cd nginx-1.18.0`

执行命令配置:./configure --prefix=/usr/local/nginx

开始安装

make & make install

然后nginx就简单安装成功了;


下面是配置nginx做图片服务器的简单应用:(是在/usr/local/nginx/data里面放图片文件夹的)

mkdir /usr/local/nginx/data

修改Nginx的配置文件

查看nginx的安装路径:whereis nginx

nginx: /usr/local/nginx

接下来,就是修改nginx的配置文件,比如我的就是在解压之后的文件夹里:/usr/local/nginx/conf里面的nginx.conf文件。

注意/root/nginx-1.18.0/conf里面也有nginx.conf文件。不过这里不是配置那个文件。

nginx展示图片:

        location /images {  root /usr/local/nginx/data; # 文件放在/usr/local/nginx/data/images下面autoindex on;}location /www {alias /usr/local/nginx/data/www;autoindex on;}

这样修改配置之后,就可以通过则访问的时候就是:http://ip:80/images/library.jpg

举例如下:
加上配置信息:

         location /carryshop {root   /usr/local/nginx/data;index  index.html;}

把前端项目打包:npm run build ;
然后会生成dist文件夹;

这里我先把文件夹重命名为carryshop,然后上传如图:

重启nginx;

只要文件对应成功,就是可以访问的啦!

附上nginx的配置:


#user  nobody;
worker_processes  1;#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;#pid        logs/nginx.pid;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '#                  '$status $body_bytes_sent "$http_referer" '#                  '"$http_user_agent" "$http_x_forwarded_for"';#access_log  logs/access.log  main;sendfile        on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout  65;gzip on;  #设置压缩最小单位,小于不压缩gzip_min_length 1k;   #gzip_disable "msie6";# gzip_vary on;# gzip_proxied any;gzip_comp_level 4; # 压缩比gzip_buffers 4 16k;  gzip_http_version 1.1;gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; # 压缩内容server {listen       80;server_name  localhost;#charset koi8-r;#access_log  logs/host.access.log  main;location / {root   html;index  index.html index.htm;}location /wx-petbox {root /usr/local/nginx/data;}location /carryshop {root   /usr/local/nginx/data;index  index.html;}location /www {alias /usr/local/nginx/data/www;autoindex on;}#error_page  404              /404.html;# redirect server error pages to the static page /50x.html#error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {#    proxy_pass   http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ \.php$ {#    root           html;#    fastcgi_pass   127.0.0.1:9000;#    fastcgi_index  index.php;#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;#    include        fastcgi_params;#}# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht {#    deny  all;#}}# another virtual host using mix of IP-, name-, and port-based configuration##server {#    listen       8000;#    listen       somename:8080;#    server_name  somename  alias  another.alias;#    location / {#        root   html;#        index  index.html index.htm;#    }#}# HTTPS server##server {#    listen       443 ssl;#    server_name  localhost;#    ssl_certificate      cert.pem;#    ssl_certificate_key  cert.key;#    ssl_session_cache    shared:SSL:1m;#    ssl_session_timeout  5m;#    ssl_ciphers  HIGH:!aNULL:!MD5;#    ssl_prefer_server_ciphers  on;#    location / {#        root   html;#        index  index.html index.htm;#    }#}}

上传配置文件之后,进行重启操作

nginx常用命令:
cd /usr/local/nginx/sbin
./nginx
./nginx -s stop
./nginx -s quit 安全退出
./nginx -s reload 重新加载配置文件
ps aux | grep nginx


nginx 配置 https

首先要在阿里云上下载证书:《SSL证书》

然后点击免费证书,找到自己对应域名的的免费证书,进行下载。


下载帮助-在Nginx(或Tengine)服务器上安装证书

如图:把自己的.pem文件和.key文件放在/usr/local/nginx/conf目录下:

开始编写nginx的配置文件nginx.conf:

报了错:
nginx: [emerg] the “ssl” parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:117

您需要重新编译Nginx并在编译安装的时候加上–with-http_ssl_module配置。

找到nginx-1.18.0文件夹,执行命令`./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

可以参考 : https://www.cnblogs.com/ghjbk/p/6744131.html

注意在执行cp指令的时候要输入y , 我就是因为每次执行到那一步的时候,直接使用了回车,导致每次都失败了。

最后附上我的nginx.conf:


#user  nobody;
worker_processes  1;#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;#pid        logs/nginx.pid;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '#                  '$status $body_bytes_sent "$http_referer" '#                  '"$http_user_agent" "$http_x_forwarded_for"';#access_log  logs/access.log  main;sendfile        on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout  65;#gzip  on;gzip on;  gzip_min_length 1k; #gzip_disable "msie6";# gzip_vary on;# gzip_proxied any;gzip_comp_level 4; gzip_buffers 4 16k;  gzip_http_version 1.1;gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;  server {listen       80;server_name  www.自己的域名;location / {root   html;index  index.html index.htm;}rewrite ^(.*)$ https://$host$1;    #  把http强制跳到httpslocation /wx-petbox {root /usr/local/nginx/data;}location /carryshop {root   /usr/local/nginx/data;index  index.html;}location /star {root /usr/local/nginx/data;index  index.html;}#error_page  404              /404.html;# redirect server error pages to the static page /50x.html#error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {#    proxy_pass   http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ \.php$ {#    root           html;#    fastcgi_pass   127.0.0.1:9000;#    fastcgi_index  index.php;#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;#    include        fastcgi_params;#}# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht {#    deny  all;#}}# another virtual host using mix of IP-, name-, and port-based configuration##server {#    listen       8000;#    listen       somename:8080;#    server_name  somename  alias  another.alias;#    location / {#        root   html;#        index  index.html index.htm;#    }#}# HTTPS serverserver {listen       443 ssl;server_name  www.自己的域名;root html;index index.html index.htm;ssl_certificate cert/你的证书.pem; ssl_certificate_key cert/你的证书.xyz.key; ssl_session_timeout 5m;ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #表示使用的TLS协议的类型。ssl_prefer_server_ciphers on;location / {root html;  #站点目录。index index.html index.htm;}#  这里使用了NGINX的反向代理。# 跳转到的后台地址location /carryshopApi { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header Host $http_host;proxy_set_header X-Forwarded-Proto https;proxy_set_header X-Forwarded-Host $host;proxy_set_header X-Forwarded-Server $host;proxy_redirect off;proxy_connect_timeout      240;proxy_send_timeout         240;proxy_read_timeout         240;# note, there is not SSL here! plain HTTP is usedproxy_pass  http://127.0.0.1:8081/;
#后端的接口地址   这前端跳转时候的路径就是https://你的域名/carryshopApi  (注意不要端口号了!这里的端口号就是443)}location /wx-petbox {root /usr/local/nginx/data;}location /carryshop {root   /usr/local/nginx/data;index  index.html;}location /star {root /usr/local/nginx/data;index  index.html;}
}
}

本来还以为要配置springboot的https请求的,不然前后端对接时会有这种错误:

大概的意思就是前端是用哪个了https访问的页面,但是请求的后端地址是http请求的,因此就无法访问正常。解决方法就是可以使用nginx的反向代理,用代理跳转到springboot后端的请求。

Nginx部署前端项目相关推荐

  1. win10 nginx部署前端项目(静态资源服务器和HTML)

    win10 nginx部署前端项目(静态资源服务器和HTML) niginx的安装和启停操作参照博客:https://blog.csdn.net/qq_26666947/article/details ...

  2. nginx 部署前端项目,不缓存html文件,项目发版后,不用手动刷新页面

    nginx 部署前端项目,不缓存html文件,项目发版后,不用手动刷新页面 location / {expires 1h;root /home/test/vue/dist/;index index.h ...

  3. 简单Tomcat和Nginx部署前端项目

    前言 记录一下前端项目的部署,主要最近也在做这些事情. 一.tomcat部署前端 这里我使用的事linux环境,windows下类似. 1.下载tomcat tomcat下载官网 版本很多,下载常用的 ...

  4. 使用nginx部署前端项目

    目录 安装Nginx 1.下载docker的nginx镜像 2.查看下载完成的镜像 3.运行一个nginx的镜像的实例 4.进入nginx容器 5.在物理机创建对应文件夹 6.拷贝容器中的对应的文件夹 ...

  5. Docker利用Nginx部署前端项目

    今天给大家分享的是Docker利用Nginx部署Vue等前端页面项目:其实是我工作刚好用到,顺便分享给大家O(∩_∩)O,那么话不多说直接开始. 一:准备文件 我们先将前端项目打包好,放到此文件夹下, ...

  6. docker nginx部署前端项目

    最近一直在搞前后端分类,一直在想前端的html页面应该用什么部署 想来想去,如果用tomcat好像有点浪费资源,作为程序员自然要时时刻刻追求新的东西 一直以来都是在apache tomcat上面运行, ...

  7. nginx部署前端项目的详细步骤

    前言 在前端开发过程中经常是需要把前端静态资源放到服务器中看效果,这时经常用到nginx来配置. 1. 什么是nginx Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/ ...

  8. Nginx 部署前端项目dist文件

    写好的项目 npm run build 生成的dist文件夹放桌面备用 下载nginx后 将dist文件夹放入html文件夹中 进入conf修改配置   里面有nginx.conf  文本修改 下面s ...

  9. 踩坑:云服务器Nginx部署前端遇到http与https问题

    问题:nginx部署前端项目,修改配置文件路径后,页面一直无法加载css.js.img 解决:看了一堆博客都没有解决,最后是发现https访问的css.js等资源导致. 解决方案1::如果没理解错的话 ...

  10. 部署前端项目的几种方案并探讨优缺点

    前端部署作为大前端的知识体系的一部分,是不可或缺的.如果作为软件开发工程师的你开发了一个网站,却不会部署上线,还有请别人帮忙,那知识面确实要扩充下了.而且作为一名前端开发,避免不了与运维部署的同事调试 ...

最新文章

  1. python3语法错误-【Python3之异常处理】
  2. AM335x(TQ335x)学习笔记——使用dtb方式启动内核
  3. 玩转Python大数据分析 《Python for Data Analysis》的读书笔记-第05页
  4. 【资源】《动手学数据分析》开源教程完整发布!
  5. 程序员初试和复试_程序员因肌肉发达面试被质疑能力,网友:这做程序员有啥关系呢?...
  6. MySQL初级培训_Mysql初级学习
  7. 稳定高效大型系统架构---集群中间件开发
  8. 10恢复出厂设置_Mac系统如何恢复出厂设置
  9. Python Matplotlib
  10. jsonp和ajax的区别,dataType jsonp和JSON之间的区别
  11. excel 图表制作--趋势线误差线
  12. 微软商店打开失败 - 错误代码 - 0x80131500
  13. 智慧党建管理系统开发,组织部干部人事管理任免平台建设
  14. PHP navicat数据搭建,navicat怎么建表
  15. 一线工程师告诉你嵌入式真实现状与发展前景
  16. 微软大中华区迎来10年来首位华人CEO;华为前高管出任云南白药CEO;港交所新行政总裁委任获批 | 高管变动...
  17. ubuntu两个显示器只出一个_Ubuntu设置笔记本电脑双显示器(linux)
  18. 如何使用Amos做调节效应和有调节的中介作用模型?
  19. Git:git安装教程和检查是否安装成功
  20. [BZOJ3252][长链剖分]攻略

热门文章

  1. SSI与Biss、Endat、Hipeface
  2. python读写pdf_Python读写PDF
  3. 设备管理系统未来发展的四大趋势
  4. 生成api接口文档的故事
  5. 仿网易云音乐移动端html模板,使用jQuery仿制网易云音乐移动端
  6. Spine动画打包成AssetBundle资源到安卓平台时,材质丢失的问题解决方案
  7. MP算法和OMP算法及其思想
  8. s-msckf代码笔记(二)
  9. 河南双轨制直销系统开发推荐奖介绍
  10. 漫画算法python版下载_漫画算法-小灰的算法之旅.pdf