首页 > 系统相关 >nginx for Windows

nginx for Windows

时间:2023-07-28 13:33:25浏览次数:44  
标签:index http 8092 Windows nginx html proxy

配置nginx.conf

worker_processes  1;

events {
  worker_connections  1024;
}

http {

  server {
    listen       8092;
    server_name  localhost;

    location / {
      root   D:/IdeaProjects/xcProjects/test/RuoYi-Vue/ruoyi-ui/dist;
      try_files $uri $uri/ /index.html;
      index  index.html index.htm;
    }

    location /flow {
      root   html;
      index  index.html index.htm;
    }

    location /prod-api/ {
      proxy_set_header Host $http_host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header REMOTE-HOST $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_pass http://localhost:8080/;
    }

    location /sogou/ {
      rewrite ^/(.*)$ https://www.sogou.com redirect;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
      root   html;
    }

  }

}

  

停止/启动nginx:
-- 运行tasklist查看nginx进程的命令
tasklist /fi "imagename eq nginx.exe"
-- 按名称终止进程
taskkill /f /im nginx.exe

启动: 
cd /d D:\soft\nginx-1.14.2 
nginx.exe

  

访问:

http://127.0.0.1:8092 
http://127.0.0.1:8092/flow/ 
http://127.0.0.1:8092/prod-api/ 
http://127.0.0.1:8092/sogou/

   

创建资源:

 

标签:index,http,8092,Windows,nginx,html,proxy
From: https://www.cnblogs.com/ooo0/p/17587346.html

相关文章

  • nginx 代理服务
     nginx.confworker_processes1;events{worker_connections1024;}http{server{listen8080;root/data/up1;location/{}}server{location/{proxy_passhttp://localhost:8080;}location/www{......
  • nginx -s reopen 重新打开日志文件
     reopen—重新打开日志文件 cd/usr/local/nginx/logslsmvaccess.logaccess_20230728-2.logls/usr/local/nginx/sbin/nginx-sreopenls ......
  • mysql8.0环境的搭建(Windows)
    1.MySQL的卸载因为之前可能安装过其他版本的mysql,所以在安装之前,需要将原先安装的进行卸载。1.1步骤1:停止MySQL服务在卸载之前,先停止MySQL8.0的服务。按键盘上的Ctrl+Alt+Delete组合键,打开任务管理器对话框,可以在服务列表找到MySQL8.0的服务,如果现在正在运行......
  • Windows PowerShell 使用SDKMAN
    前言sdkman(TheSoftwareDevelopmentKitManager),从名字上就可以很明显的感觉到,这个软件是干什么的,有点像Nodejs中的nvm工具。在开发过程中,总能遇到这样一种情况,就是有些时候要这个版本的,有些时候要使用其他版本的,这样就得不停的切换环境变量中的设置。使用sdkman即可......
  • Linux 上 Nginx 获得最佳性能调试方法
    NGINX是一种流行的、免费的开源Web服务器。默认的NGINX配置足以让Web服务器正常工作。但是,如果您想充分利用NGINX,则需要使用其配置文件并设置可优化服务器性能的参数。您将在Linux机器上的/etc/nginx目录中找到配置文件。什么是NGINX?NGINX是一种现代Web服务器,您可以......
  • nginx安全性:强化服务器配置
    nginx是最流行的Web服务器。它轻巧,快速,强大,并支持所有主要操作系统。它是Netflix,WordPress.com和其他高流量站点的首选Web服务器。Nginx服务器可以轻松地处理10,000个不活动的HTTP连接,而其内存只有2.5MB。在本文中,我们将提供有关nginx服务器安全性的提示,向您展示如何保护nginx安......
  • Windows | Linux 查找环境变量二进制所在目录
    1.Windows使用where命令wherejava2.Linux使用which命令whichjava......
  • 设置ip和主机名映射:linux配置hosts文件 | windows配置hosts文件
    摘要目的:Windows下主机名和ip的映射关系linux设置主机名和ip的映射关系一、Windows设置主机名和ip映射修改文件C:\Windows\System32\drivers\etc\hosts,添加ip和主机名192.168.200.130CentOS192.168.10.100hadoop100192.168.10.101hadoop101192.168.10.102hadoop1......
  • 主机名解析过程:Hosts文件 | DNS | windows查看DNS缓存 | 隐患
    摘要目的:本文以linux虚拟机和Windows为例,来介绍一下主机名解析过程主机名解析不完全是靠DNS一、基本概念主机名:比如www.baidu.com、hadoop100等等1.Hosts文件hosts文件是一个文本文件,用来记录IP和Hostname(主机名)的映射关系在Windows和linux里面都有Windows:C:\Wi......
  • windows安装xadmin==0.6.1报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0
    直接用pip安装xadmin会报以下错误:pipinstallxadmin==0.6.1报错:Completeoutputfromcommandpythonsetup.pyegg_info:Traceback(mostrecentcalllast):File"<string>",line1,in<module>File"C:\Users\Administror\......