This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Azul Zulu JDK 8 安装脚本 | |
# 请确保将 Zulu JDK 8 的 .tar.gz 文件与此脚本放在同一目录中,否则脚本将尝试下载它。 | |
# 为此脚本授予执行权限:chmod +x install_zulu_jdk8.sh | |
# 在终端执行此脚本开始安装:./install_zulu_jdk8.sh | |
# 注意:目录中应仅存在一个 JDK 包版本。 | |
# 安装完成后,为使环境变量生效,请重新登录。 | |
# JDK 安装路径 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 检查是否以root权限运行 | |
if [ "$EUID" -ne 0 ] | |
then echo "请以root权限运行此脚本" | |
exit | |
fi | |
# 确保宿主机有正确的时区文件 | |
if [ ! -f /usr/share/zoneinfo/Asia/Shanghai ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build stage | |
FROM node:lts-alpine AS build | |
ENV PNPM_HOME="/pnpm" | |
ENV PATH="$PNPM_HOME:$PATH" | |
RUN corepack enable | |
WORKDIR /app | |
COPY package.json pnpm-lock.yaml ./ | |
RUN pnpm install --frozen-lockfile | |
COPY . . | |
RUN pnpm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Azul Zulu JDK 17 安装脚本 | |
# 请确保将 Zulu JDK 17 的 .tar.gz 文件与此脚本放在同一目录中,否则脚本将尝试下载它。 | |
# 为此脚本授予执行权限:chmod +x install_zulu_jdk17.sh | |
# 在终端执行此脚本开始安装:./install_zulu_jdk17.sh | |
# 注意:目录中应仅存在一个 JDK 包版本。 | |
# 安装完成后,为使环境变量生效,请重新登录。 | |
# JDK 安装路径 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# JDK 11 安装脚本 | |
# 请确保将 JDK 11 的 .tar.gz 文件与此脚本放在同一目录中,否则脚本将尝试下载它。 | |
# 为此脚本授予执行权限:chmod +x install_jdk11.sh | |
# 在终端执行此脚本开始安装:./install_jdk11.sh | |
# 注意:目录中应仅存在一个 JDK 包版本。 | |
# 安装完成后,为使环境变量生效,请重新登录。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
# 主 location 块用于处理 SPA 应用的前端路由 | |
location / { | |
gzip_static on; # 启用预压缩文件的服务 | |
try_files $uri $uri/ /index.html; # 此设置确保所有非静态文件请求回退到 index.html | |
} | |
# 处理指定静态文件类型 | |
location ~* \.(js|css|json|txt|html|bmp|png|jpeg|jpg|svg|ico)$ { | |
expires 1M; # 设置静态文件的缓存过期时间 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 检查并安装ntpdate | |
if ! command -v ntpdate &> /dev/null | |
then | |
echo "|- ntpdate 未安装,正在尝试安装..." | |
# 根据不同的系统选择安装命令 | |
if [[ $(uname -s) == Linux ]]; then | |
if [ -f /etc/debian_version ]; then | |
apt-get update && apt-get install -y ntpdate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## If sudo is not available on the system, | |
## uncomment the line below to install it | |
# apt-get install -y sudo | |
sudo apt-get update -y | |
## Install prerequisites | |
sudo apt-get install curl gnupg -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# jdk install | |
# 请将下载的jdk-xxx-linux-xxx.tar.gz包与此脚本放置到同一目录 | |
# 授予此脚本可执行权限(chmod +x install_jdk.sh) | |
# 在终端执行此脚本开始安装(./文件名) | |
# 注意:不可有多个版本的jdk包! | |
# 为了使配置的环境变量生效,安装完成后你应该重新登陆。 | |
jvmpath=/usr/local/java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#IP限制 | |
set $flag f; | |
if ($remote_addr = "127.0.0.1") { | |
set $flag "${flag}1"; | |
} | |
if ($flag = "f1" ){ | |
set $flag ok; | |
} | |
if ($remote_addr = "127.0.0.2") { | |
set $flag "${flag}2"; |