跳至主要內容
常用linux&windows命令

记录我的常用linux&windows命令

描述 命令
查看端口占用 `netstat -aon findstr "3000"`

yyshino小于 1 分钟ComputerLinux
Linux常用知识

Linux常用知识

Linux操作系统的创始人和主要设计者是 Linus Torvalds

林纳斯·本纳第克特·托瓦兹

——图片来自百度百科

LInux内核遵循 GPL 许可条例。

Linux联机帮助命令 man


yyshino大约 9 分钟ComputerLinux
Linux

Linux

一 Linux基本命令

网络测试

ping

ipconfig

帮助命令

--help

man命令

info命令

三 Linux系统 统计 查询

grep命令

Linux grep (global regular expression) 命令用于查找文件里符合条件的字符串或正则表达式。


yyshino大约 14 分钟ComputerLinux
Linux涉及命令

总览

cd pwd ls mkdir rmdir rm

catmoreless

cprmmv

touch

?*[]


yyshino小于 1 分钟ComputerLinux
Nginx配置

Nginx配置

user www-data;
worker_processes auto;
error_log  /etc/nginx/nginx_error.log  crit;
pid /run/nginx.pid;
worker_rlimit_nofile 51200;

events
    {
        use epoll;
        worker_connections 51200;   # 一个worker进程可以打开51200个链接
        multi_accept on;
    }

http
    {
        include       mime.types;
		# include luawaf.conf;

		# include proxy.conf;

        default_type  application/octet-stream;

        server_names_hash_bucket_size 512;
        client_header_buffer_size 32k;
        large_client_header_buffers 4 32k;
        client_max_body_size 200m; // nginx对上传文件大小的限制

        sendfile   on;  # 是否调用sendfile这个函数
        tcp_nopush on;  # nginx在去处理数据包时是否累计,然后再一起传输

        keepalive_timeout 60;

        tcp_nodelay on;

        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        fastcgi_buffer_size 64k;
        fastcgi_buffers 4 64k;
        fastcgi_busy_buffers_size 128k;
        fastcgi_temp_file_write_size 256k;
		fastcgi_intercept_errors on;

        gzip on;  # gzip 压缩
        gzip_min_length  1k;
        gzip_buffers     4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
        gzip_disable   "MSIE [1-6]\.";

        limit_conn_zone $binary_remote_addr zone=perip:10m;
		limit_conn_zone $server_name zone=perserver:10m;

        server_tokens off;
        access_log off;

    	server  { // 服务一 前台
    		listen		80;  // 监听端口
        server_name     116.63.165.100; // 服务器IP
    		location / {
			root 	/etc/nginx/html/font/dist;
    			index	/index.html;
    		}
    		location ^~ /api/ { // 遇到api 代理到 接口地址
    			rewrite ^/api/(.*)$1 /$1 break;
    			proxy_pass http://120.46.214.246:8080;
    		}
    	}
	
	server  { // 服务一 后台
          listen          81; // 监听端口
          server_name     116.63.165.100;  // 服务器IP
          location / {
                  root    /etc/nginx/html/backend/dist;
                  index   /index.html;
          }
          location ^~ /api/  { // 遇到api 代理到 接口地址
                  rewrite ^/api/(.*)$1 /$1 break;
                  proxy_pass  http://120.46.214.246:8080;
          }
  }
  
  # 前台测试
include /www/server/panel/vhost/nginx/*.conf;
}



yyshino大约 1 分钟AfterEndFontEndLinuxNginx
浅入Linux

简介

我的大部分时间一直在学习前端,对后端的了解也只是学了一点Node学了一点Java学了一点Go,买了个服务器一个域名,对服务器部署前后端有一些了解。正好有一台云服务器,那就浅学一下Linux、Redis、Docker.


yyshino小于 1 分钟AfterEndLinux