Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

40 total results found

服务器管理

Docker

服务器管理

docker部署相关

base64_Investigation on the corrosion resistance of epoxy resin coatings modified by high-entropy oxides

服务器管理 管理工具

Investigation on the corrosion resistance of epoxy resin coatings modified by high-entropy oxides Boxin Yan1, Chao Wang1,2, Yihui Liu1 1Hubei Key Laboratory of Advanced Technology for Automotive Components & Hubei Collaborative Innovation Center for Automotiv...

Linux

服务器管理

NAS

服务器管理

路由器

服务器管理

nginx配置

服务器管理 Linux

配置文件nginx.zip 引言 嗨,朋友们!今天我们要聊的主角,是 Web 服务器界的一颗璀璨明星 —— Nginx。如果你对这个名字不陌生,那肯定知道它有多厉害。全球超过三分之一的网站,包括 Netflix、Pinterest、Airbnb 这些流量巨兽,背后都有 Nginx 在默默支撑着。它就像一个轻量级的、高性能的“网站大管家”,既能当 Web 服务器,又能做反向代理,效率高到让你尖叫。 这次,我打算手把手教你如何在 Ubuntu 22.04、24.04 乃至最新的 25.04 系统上安装和配置 Ng...

我的笔记

python flask项目部署到服务器上,并制作docker镜像

服务器管理 Linux

部署python web项目到服务器(使用docker) 参考 : https://blog.51cto.com/fish/6023519 (一)创建虚拟环境 创建目录 mkdir mytest cd mytest [root@python mytest]# pwd /root/mytest 创建虚拟环境 [root@python mytest]# python3 -m venv myvenv 激活虚拟环境 [root@python mytest]# source myvenv/bin/activate ...

太赫兹相关技术

包括红外

管理工具

服务器管理

推荐工具

Investigation on the corrosion resistance of epoxy resin coatings modified by high-entropy oxides

服务器管理 管理工具

Investigation on the corrosion resistance of epoxy resin coatings modified by high-entropy oxides Boxin Yan1, Chao Wang1,2, Yihui Liu1 1Hubei Key Laboratory of Advanced Technology for Automotive Components & Hubei Collaborative Innovation Center for Automotiv...

Windows 设置 Syncthing 开机自启动

服务器管理 NAS

syncthing下载地址 保存 syncthing.bat 脚本文件 # 打开 “记事本” 软件,将以下代码复制进去,另存为 syncthing.bat。 start "Syncthing" syncthing.exe -no-console -no-browser 复制脚本文件到 syncthing.exe 同级目录 找到 syncthing.exe 所在目录,将 syncthing.bat 脚本文件复制到该目录。 将脚本文件快捷方式添加到 “启动” 菜单 选中 syncthing.bat 脚本...

Windows 设置 Syncthing 开机自启动

服务器管理 NAS

## 安装wireguard 首先,打开系统-软件包,先更新列表,然后搜索wireguard,安装luci-app-wireguard,会把其他的依赖一起安装上 ```shellkmod-wireguardluci-app-wireguardluci-i18n-wireguard-zh-cnluci-proto-wireguardwg-installer-serverwg-installer-server-hotplug-babeldwg-installer-server-hotplug-olsrdwiregu...

iStoreOS配置tailscale——局域网访问和科学上网

服务器管理 NAS

参考地址:在 Linux 系统上安装与配置 Tailscale:完整指南 1.在iStoreOS 商店里安装好 tailscale软件包 或者手动安装: 开源项目地址:【点击进入】 wget https://github.com/adyanth/openwrt-tailscale-enabler/releases/download/v1.60.0-e428948-autoupdate/openwrt-tailscale-enabler-v1.60.0-e428948-autoupdate.tgz ope...

群晖安装 WireGuard(客户端Client)教程

服务器管理 NAS

一、首先需要部署一个WireGuard服务 在套件中心添加“套件来源”,这里我选的是“我不是矿神” 单击“套件中心” 点“设置” 点“套件来源” 点“新增” 输入名称“自定义名称”及位置“https://spk7.imnks.com/” 二、从“社群”安装Wireguard套件 三、通过SSH登录并进行进一步操作 赋予Wireguard套件权限 sudo sed -i 's/package/root/g' /var/packages/WireGuard/conf/privilege 在etc目...

群晖docker-compose安装paperless文档归档管理系统

服务器管理 NAS

https://chochol.io/en/software/paperless-installation-guide-for-synology-on-docker-compose/ https://post.smzdm.com/p/a6p3r0ge/ 依次创建如下目录: consume data export media pgdata redisdata docker-compose文件 version: "3.4" services: broker: image: library/redis...

docker安装个人在线书库calibre

服务器管理 NAS

官方网址 docker pull johngong/calibre-web docker run -d \ --name=calibre \ -e PUID=0 \ -e PGID=0 \ -e TZ=Asia/Shanghai \ -p 51631:8083 \ -v /volume1/docker/calibre/book:/library \ -v /volume1/docker/calibre/config:/config \ -e DOCKER_MODS=linuxserver/calibre-web:...

python及pip安装

服务器管理 NAS

pip安装 python -m ensurepip python -m pip install --upgrade pip 或者 wget https://bootstrap.pypa.io/get-pip.py python get-pip.py 以上指令执行完成后,可以用pip --version检查pip安装情况。 为了提高pip的运行速度,建议执行以下指令,把pip源更改为国内镜像源。 sudo pip config set global.index-url https://pypi.tuna.tsin...

nginx反向代理emqx

服务器管理 NAS

1. docker部署emqx services: emqx: image: emqx/emqx:5.10.0 container_name: emqx4 privileged: true #restart: always environment: - "EMQX_NODE_NAME=emqx@node1.emqx.io" - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static" healthcheck: ...