mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-14 04:28:49 +00:00
Compare commits
5 Commits
Xe/logrota
...
Xe/dependa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cff364920a | ||
|
|
09917dbf1b | ||
|
|
f032d5d0ac | ||
|
|
a709a2b2da | ||
|
|
18d2b4ffff |
1
.github/actions/spelling/allow.txt
vendored
1
.github/actions/spelling/allow.txt
vendored
@@ -10,3 +10,4 @@ ABee
|
|||||||
tencent
|
tencent
|
||||||
maintnotifications
|
maintnotifications
|
||||||
azurediamond
|
azurediamond
|
||||||
|
cooldown
|
||||||
|
|||||||
1
.github/actions/spelling/expect.txt
vendored
1
.github/actions/spelling/expect.txt
vendored
@@ -278,6 +278,7 @@ redhat
|
|||||||
redir
|
redir
|
||||||
redirectscheme
|
redirectscheme
|
||||||
refactors
|
refactors
|
||||||
|
remoteip
|
||||||
reputational
|
reputational
|
||||||
risc
|
risc
|
||||||
ruleset
|
ruleset
|
||||||
|
|||||||
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@@ -8,6 +8,8 @@ updates:
|
|||||||
github-actions:
|
github-actions:
|
||||||
patterns:
|
patterns:
|
||||||
- "*"
|
- "*"
|
||||||
|
cooldown:
|
||||||
|
default-days: 7
|
||||||
|
|
||||||
- package-ecosystem: gomod
|
- package-ecosystem: gomod
|
||||||
directory: /
|
directory: /
|
||||||
@@ -17,6 +19,8 @@ updates:
|
|||||||
gomod:
|
gomod:
|
||||||
patterns:
|
patterns:
|
||||||
- "*"
|
- "*"
|
||||||
|
cooldown:
|
||||||
|
default-days: 7
|
||||||
|
|
||||||
- package-ecosystem: npm
|
- package-ecosystem: npm
|
||||||
directory: /
|
directory: /
|
||||||
@@ -26,3 +30,5 @@ updates:
|
|||||||
npm:
|
npm:
|
||||||
patterns:
|
patterns:
|
||||||
- "*"
|
- "*"
|
||||||
|
cooldown:
|
||||||
|
default-days: 7
|
||||||
|
|||||||
76
.github/workflows/go-mod-tidy-check.yml
vendored
Normal file
76
.github/workflows/go-mod-tidy-check.yml
vendored
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
name: Go Mod Tidy Check
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["main"]
|
||||||
|
pull_request:
|
||||||
|
branches: ["main"]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
go_mod_tidy_check:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
|
||||||
|
with:
|
||||||
|
go-version: stable
|
||||||
|
|
||||||
|
- name: Check go.mod and go.sum in main directory
|
||||||
|
run: |
|
||||||
|
# Store original file state
|
||||||
|
cp go.mod go.mod.orig
|
||||||
|
cp go.sum go.sum.orig
|
||||||
|
|
||||||
|
# Run go mod tidy
|
||||||
|
go mod tidy
|
||||||
|
|
||||||
|
# Check if files changed
|
||||||
|
if ! diff -q go.mod.orig go.mod > /dev/null 2>&1; then
|
||||||
|
echo "ERROR: go.mod in main directory has changed after running 'go mod tidy'"
|
||||||
|
echo "Please run 'go mod tidy' locally and commit the changes"
|
||||||
|
diff go.mod.orig go.mod
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! diff -q go.sum.orig go.sum > /dev/null 2>&1; then
|
||||||
|
echo "ERROR: go.sum in main directory has changed after running 'go mod tidy'"
|
||||||
|
echo "Please run 'go mod tidy' locally and commit the changes"
|
||||||
|
diff go.sum.orig go.sum
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "SUCCESS: go.mod and go.sum in main directory are tidy"
|
||||||
|
|
||||||
|
- name: Check go.mod and go.sum in test directory
|
||||||
|
run: |
|
||||||
|
cd test
|
||||||
|
|
||||||
|
# Store original file state
|
||||||
|
cp go.mod go.mod.orig
|
||||||
|
cp go.sum go.sum.orig
|
||||||
|
|
||||||
|
# Run go mod tidy
|
||||||
|
go mod tidy
|
||||||
|
|
||||||
|
# Check if files changed
|
||||||
|
if ! diff -q go.mod.orig go.mod > /dev/null 2>&1; then
|
||||||
|
echo "ERROR: go.mod in test directory has changed after running 'go mod tidy'"
|
||||||
|
echo "Please run 'go mod tidy' locally and commit the changes"
|
||||||
|
diff go.mod.orig go.mod
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! diff -q go.sum.orig go.sum > /dev/null 2>&1; then
|
||||||
|
echo "ERROR: go.sum in test directory has changed after running 'go mod tidy'"
|
||||||
|
echo "Please run 'go mod tidy' locally and commit the changes"
|
||||||
|
diff go.sum.orig go.sum
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "SUCCESS: go.mod and go.sum in test directory are tidy"
|
||||||
@@ -92,6 +92,11 @@ Assuming you are protecting `anubistest.techaro.lol`, you need the following ser
|
|||||||
DocumentRoot /var/www/anubistest.techaro.lol
|
DocumentRoot /var/www/anubistest.techaro.lol
|
||||||
ErrorLog /var/log/httpd/anubistest.techaro.lol_error.log
|
ErrorLog /var/log/httpd/anubistest.techaro.lol_error.log
|
||||||
CustomLog /var/log/httpd/anubistest.techaro.lol_access.log combined
|
CustomLog /var/log/httpd/anubistest.techaro.lol_access.log combined
|
||||||
|
|
||||||
|
# Pass the remote IP to the proxied application instead of 127.0.0.1
|
||||||
|
# This requires mod_remoteip
|
||||||
|
RemoteIPHeader X-Real-IP
|
||||||
|
RemoteIPTrustedProxy 127.0.0.1/32
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user