码迷,mamicode.com
首页 >  
搜索关键字:ubuntu nginx asp.net mvc    ( 72854个结果
systemd-resolved and resolvctl on ubuntu; 127.0.0.53 nameserver;
前段时间,我偶然进行查看linux DNS配置,通过查看 /etc/resolv.conf 文件,得到如下结果: ? devices ll /etc/resolv.conf lrwxrwxrwx 1 root root 39 12月 28 18:55 /etc/resolv.conf -> ../r ...
分类:系统相关   时间:2021-01-06 12:29:13    阅读次数:0
部署Django云服务器 Gunicorn + Nginx
工作流程 Django 自带的开发服务器性能太差,用到线上环境不合适。所以线上部署时,我们还要安装 Nginx 和 Gunicorn,工作流程如下: 客户端发来 http 请求,Nginx 作为直接对外的服务器接口,对 http 请求进行分析 如果是静态资源请求,则由Nginx自己处理(效率极高) ...
分类:其他好文   时间:2021-01-06 12:01:33    阅读次数:0
Nginx 目录浏览基础与进阶
1、简述 Nginx作为一款优秀的web服务器,其默认不允许列出站点的整个目录,如果需要配置,需要单独打开此功能 此功能一般用于单独开设虚拟主机供内网如下载文件等功能使用,其他情况下为了安全,一般不会开启此功能 2、配置目录浏览 server { listen 80; index index.htm ...
分类:其他好文   时间:2021-01-06 12:00:59    阅读次数:0
install R 4.0 in ubuntu
#1 清除R3先 sudo apt-get --purge remove r-base sudo apt-get --purge remove r-base-core sudo apt-get --purge remove r-base-dev #2 升级系统 sudo apt install -- ...
分类:系统相关   时间:2021-01-06 11:57:46    阅读次数:0
springmvc记录
目录: 1、mvc和springmvc介绍 1.1、JAVAEE体系结构 1.2、mvc设计模式 model 1 model 2 1.3、Springmvc是什么 Springmvc是一个web层mvc框架,类似struts2。Springmvc是spring的一部分 2、Springmvc执行流程 ...
分类:编程语言   时间:2021-01-06 11:52:21    阅读次数:0
.net5中实现CI/CD
预告篇,使用到的工具及环境有:.net5,gitlab,jenkins,docker,阿里云ECS,nginx 前言:中小厂虽然跟不上大厂的脚步 ,但在技术革新及使用工具方面也在不断追赶,像我们公司XXX目前已经开始使用DevOps平台实践CD/CD,但多数是对java的构建部署~ .net经过漫长 ...
分类:Web程序   时间:2021-01-06 11:39:55    阅读次数:0
Nginx 配置文件
默认的config #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/ngi ...
分类:其他好文   时间:2021-01-05 11:39:49    阅读次数:0
在Docker上运行Nginx
安装运行Nginx (1)下载Nginx镜像 docker pull nginx (2)启动Nginx docker run --name nginx -p 80:80 -d nginx 这样就简单的把nginx启动了。 (3)修改配置文件 但是我们想要改变配置文件nginx.conf ,进入容器, ...
分类:其他好文   时间:2021-01-05 11:30:17    阅读次数:0
VUE项目编译后刷新404
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:其他好文   时间:2021-01-04 11:32:56    阅读次数:0
我觉得重要的、工作会用得到的知识
就是一个请求从前台到后台处理的过程需要用到的东西,最少包括以下点:js,html,css,ajax,ajax跨域,跨站脚本,web缓存,web优化,nginx,apache作用,鉴权方式,cookie,session,servlet,filter,基本数据结构,线程池,线程并发,缓存,io等等,知识 ...
分类:其他好文   时间:2021-01-04 11:32:05    阅读次数:0
72854条   上一页 1 ... 59 60 61 62 63 ... 7286 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!