First commit - init repo
This commit is contained in:
parent
eb82a64cc9
commit
863ded2253
723 changed files with 120413 additions and 1 deletions
52
README.md
52
README.md
|
|
@ -1,2 +1,52 @@
|
|||
# infra
|
||||
Test
|
||||
Specs for Ganhome Infrastructure
|
||||
|
||||
# Specs
|
||||
Apache : Adztech
|
||||
Dashy : for dashboard webinterface Useless
|
||||
Forgejo : Git
|
||||
Ghost : Old
|
||||
Hass : Home Assistant
|
||||
Joplin: Note
|
||||
Nginx : Useless
|
||||
Promtail : for observability Loki
|
||||
SSLH : Muliplexer
|
||||
Teslamate : Old
|
||||
Vaultwarden : For password
|
||||
|
||||
|
||||
# Endpoint
|
||||
|
||||
|
||||
# WebSite pro
|
||||
adztech.fr :
|
||||
http://192.168.3.191:30006
|
||||
|
||||
# Home Assitant
|
||||
ganhome.duckdns.org
|
||||
http://192.168.3.191:30005
|
||||
|
||||
|
||||
# Plex
|
||||
ganocloud.duckdns.org
|
||||
http://192.168.10.69:32400
|
||||
|
||||
# Git
|
||||
git.ganhome.fr
|
||||
http://192.168.3.191:30013
|
||||
|
||||
# Grafana
|
||||
grafana.gano.duckdns.org
|
||||
http://192.168.3.191:30004
|
||||
|
||||
# Paperless
|
||||
paper.gano.duckdns.org
|
||||
http://192.168.3.191:30002
|
||||
|
||||
# Proxmox
|
||||
pve.ganocloud.duckdns.org
|
||||
https://192.168.2.33:8006
|
||||
|
||||
# VaultWarden
|
||||
vaultwarden.gano.duckdns.org
|
||||
http://192.168.3.191:30007
|
||||
6
scripts/lacanau.sh
Normal file
6
scripts/lacanau.sh
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
#Previsions LSI
|
||||
#set -x
|
||||
cd /home/gano/
|
||||
xvfb-run --server-args="-screen 0, 1280x1200x24" cutycapt --url='https://www.francesurfinfo.com/affiliation/getPrevision.php?_setAuthCode=9JJx-ULjHH-zrNM&_setAccount=jkPI-PM40J-NmhH&_setDomainName=www.lacanausurfinfo.com&_setPrevision=SURF.MAREE&_setTypeExport=HTML&_setSpot=0jYh-swUvT-4koV' --out=/home/gano/.homeassistant/www/surf/surf.png
|
||||
|
||||
43
specs/Teslamate/database-deployment.yaml
Normal file
43
specs/Teslamate/database-deployment.yaml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: database
|
||||
name: database
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: database
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.network/teslamate-default: "true"
|
||||
io.kompose.service: database
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: POSTGRES_DB
|
||||
value: teslamate
|
||||
- name: POSTGRES_PASSWORD
|
||||
value: ganopacha007
|
||||
- name: POSTGRES_USER
|
||||
value: teslamate
|
||||
image: postgres:14
|
||||
name: database
|
||||
volumeMounts:
|
||||
- mountPath: /var/lib/postgresql/data
|
||||
name: teslamate-db
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: teslamate-db
|
||||
persistentVolumeClaim:
|
||||
claimName: teslamate-db
|
||||
18
specs/Teslamate/database-service.yaml
Normal file
18
specs/Teslamate/database-service.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: database
|
||||
name: database
|
||||
spec:
|
||||
ports:
|
||||
- name: "3010"
|
||||
port: 3010
|
||||
targetPort: 3000
|
||||
nodePort: 30022
|
||||
type: NodePort
|
||||
selector:
|
||||
io.kompose.service: database
|
||||
48
specs/Teslamate/docker-compose.yml
Normal file
48
specs/Teslamate/docker-compose.yml
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
version: "3"
|
||||
|
||||
services:
|
||||
teslamate:
|
||||
image: teslamate/teslamate:latest
|
||||
environment:
|
||||
- ENCRYPTION_KEY=ganopacha007
|
||||
- DATABASE_USER=teslamate
|
||||
- DATABASE_PASS=ganopacha007
|
||||
- DATABASE_NAME=teslamate
|
||||
- DATABASE_HOST=database
|
||||
- MQTT_HOST=192.168.10.39
|
||||
- MQTT_PORT=1883
|
||||
- MQTT_USERNAME=hadash
|
||||
- MQTT_PASSWORD=hadash
|
||||
ports:
|
||||
- 4000:4000
|
||||
volumes:
|
||||
- ./import:/opt/app/import
|
||||
cap_drop:
|
||||
- all
|
||||
|
||||
database:
|
||||
image: postgres:14
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_USER=teslamate
|
||||
- POSTGRES_PASSWORD=ganopacha007
|
||||
- POSTGRES_DB=teslamate
|
||||
volumes:
|
||||
- teslamate-db:/var/lib/postgresql/data
|
||||
|
||||
grafana:
|
||||
image: teslamate/grafana:latest
|
||||
restart: always
|
||||
environment:
|
||||
- DATABASE_USER=teslamate
|
||||
- DATABASE_PASS=ganopacha007
|
||||
- DATABASE_NAME=teslamate
|
||||
- DATABASE_HOST=database
|
||||
ports:
|
||||
- 3010:3000
|
||||
volumes:
|
||||
- teslamate-grafana-data:/var/lib/grafana
|
||||
|
||||
volumes:
|
||||
teslamate-db:
|
||||
teslamate-grafana-data:
|
||||
49
specs/Teslamate/grafana-deployment.yaml
Normal file
49
specs/Teslamate/grafana-deployment.yaml
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: grafanatesla
|
||||
name: grafana
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: grafanatesla
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.network/teslamate-default: "true"
|
||||
io.kompose.service: grafanatesla
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: DATABASE_HOST
|
||||
value: database
|
||||
- name: DATABASE_NAME
|
||||
value: teslamate
|
||||
- name: DATABASE_PASS
|
||||
value: ganopacha007
|
||||
- name: DATABASE_USER
|
||||
value: teslamate
|
||||
image: teslamate/grafana:latest
|
||||
name: grafanatesla
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
hostPort: 3010
|
||||
protocol: TCP
|
||||
volumeMounts:
|
||||
- mountPath: /var/lib/grafana
|
||||
name: teslamate-grafana-data
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: teslamate-grafana-data
|
||||
persistentVolumeClaim:
|
||||
claimName: teslamate-grafana-data
|
||||
18
specs/Teslamate/grafana-service.yaml
Normal file
18
specs/Teslamate/grafana-service.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: grafanatesla
|
||||
name: grafanatesla
|
||||
spec:
|
||||
ports:
|
||||
- name: "3010"
|
||||
port: 3010
|
||||
targetPort: 3000
|
||||
nodePort: 30020
|
||||
type: NodePort
|
||||
selector:
|
||||
io.kompose.service: grafanatesla
|
||||
12
specs/Teslamate/teslamate-claim0-persistentvolumeclaim.yaml
Normal file
12
specs/Teslamate/teslamate-claim0-persistentvolumeclaim.yaml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
labels:
|
||||
io.kompose.service: teslamate-claim0
|
||||
name: teslamate-claim0
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 100Mi
|
||||
12
specs/Teslamate/teslamate-db-persistentvolumeclaim.yaml
Normal file
12
specs/Teslamate/teslamate-db-persistentvolumeclaim.yaml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
labels:
|
||||
io.kompose.service: teslamate-db
|
||||
name: teslamate-db
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 100Mi
|
||||
63
specs/Teslamate/teslamate-deployment.yaml
Normal file
63
specs/Teslamate/teslamate-deployment.yaml
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: teslamate
|
||||
name: teslamate
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: teslamate
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.network/teslamate-default: "true"
|
||||
io.kompose.service: teslamate
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: DATABASE_HOST
|
||||
value: database
|
||||
- name: DATABASE_NAME
|
||||
value: teslamate
|
||||
- name: DATABASE_PASS
|
||||
value: ganopacha007
|
||||
- name: DATABASE_USER
|
||||
value: teslamate
|
||||
- name: ENCRYPTION_KEY
|
||||
value: ganopacha007
|
||||
- name: MQTT_HOST
|
||||
value: 192.168.10.39
|
||||
- name: MQTT_PASSWORD
|
||||
value: hadash
|
||||
- name: MQTT_PORT
|
||||
value: "1883"
|
||||
- name: MQTT_USERNAME
|
||||
value: hadash
|
||||
image: teslamate/teslamate:latest
|
||||
name: teslamate
|
||||
ports:
|
||||
- containerPort: 4000
|
||||
hostPort: 4000
|
||||
protocol: TCP
|
||||
securityContext:
|
||||
capabilities:
|
||||
drop:
|
||||
- all
|
||||
volumeMounts:
|
||||
- mountPath: /opt/app/import
|
||||
name: teslamate-claim0
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: teslamate-claim0
|
||||
persistentVolumeClaim:
|
||||
claimName: teslamate-claim0
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
labels:
|
||||
io.kompose.service: teslamate-grafana-data
|
||||
name: teslamate-grafana-data
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 100Mi
|
||||
18
specs/Teslamate/teslamate-service.yaml
Normal file
18
specs/Teslamate/teslamate-service.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: teslamate
|
||||
name: teslamate
|
||||
spec:
|
||||
ports:
|
||||
- name: "4000"
|
||||
port: 4000
|
||||
targetPort: 4000
|
||||
nodePort: 30021
|
||||
type: NodePort
|
||||
selector:
|
||||
io.kompose.service: teslamate
|
||||
30
specs/apache/deployment.yaml
Normal file
30
specs/apache/deployment.yaml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: apache
|
||||
namespace: default
|
||||
labels:
|
||||
app: httpd_app
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: httpd_app
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: httpd_app
|
||||
spec:
|
||||
containers:
|
||||
- name: apache
|
||||
image: httpd:latest
|
||||
ports:
|
||||
- containerPort: 80
|
||||
volumeMounts:
|
||||
- mountPath: /usr/local/apache2/htdocs
|
||||
name: data
|
||||
volumes:
|
||||
- hostPath:
|
||||
path: /media/kube/adztech/site-web
|
||||
type: ""
|
||||
name: data
|
||||
13
specs/apache/service.yaml
Normal file
13
specs/apache/service.yaml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: apache
|
||||
namespace: default
|
||||
spec:
|
||||
type: NodePort
|
||||
selector:
|
||||
app: httpd_app
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: 80
|
||||
nodePort: 30006
|
||||
43
specs/dashy/dashy-deployment.yaml
Normal file
43
specs/dashy/dashy-deployment.yaml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: dashy
|
||||
name: dashy
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: dashy
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.network/dashy-default: "true"
|
||||
io.kompose.service: dashy
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: NODE_ENV
|
||||
value: production
|
||||
image: lissy93/dashy
|
||||
livenessProbe:
|
||||
exec:
|
||||
command:
|
||||
- node
|
||||
- /app/services/healthcheck
|
||||
failureThreshold: 3
|
||||
initialDelaySeconds: 40
|
||||
periodSeconds: 90
|
||||
timeoutSeconds: 10
|
||||
name: dashy
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
hostPort: 4000
|
||||
protocol: TCP
|
||||
restartPolicy: Always
|
||||
18
specs/dashy/dashy-service.yaml
Normal file
18
specs/dashy/dashy-service.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: dashy
|
||||
name: dashy
|
||||
spec:
|
||||
ports:
|
||||
- name: "4000"
|
||||
port: 4000
|
||||
targetPort: 4000
|
||||
nodePort: 30024
|
||||
type: NodePort
|
||||
selector:
|
||||
io.kompose.service: dashy
|
||||
27
specs/dashy/docker-compose.yml
Normal file
27
specs/dashy/docker-compose.yml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
version: "3.8"
|
||||
services:
|
||||
dashy:
|
||||
# To build from source, replace 'image: lissy93/dashy' with 'build: .'
|
||||
# build: .
|
||||
image: lissy93/dashy
|
||||
container_name: Dashy
|
||||
# Pass in your config file below, by specifying the path on your host machine
|
||||
# volumes:
|
||||
# - /root/my-config.yml:/app/user-data/conf.yml
|
||||
ports:
|
||||
- 4000:8080
|
||||
# Set any environmental variables
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
# Specify your user ID and group ID. You can find this by running `id -u` and `id -g`
|
||||
# - UID=1000
|
||||
# - GID=1000
|
||||
# Specify restart policy
|
||||
restart: unless-stopped
|
||||
# Configure healthchecks
|
||||
healthcheck:
|
||||
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||
interval: 1m30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
11
specs/forgejo/server-cm1-configmap.yaml
Normal file
11
specs/forgejo/server-cm1-configmap.yaml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
apiVersion: v1
|
||||
data:
|
||||
timezone: |
|
||||
Europe/Paris
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
annotations:
|
||||
use-subpath: "true"
|
||||
labels:
|
||||
io.kompose.service: server
|
||||
name: server-cm1
|
||||
10
specs/forgejo/server-cm2-configmap.yaml
Normal file
10
specs/forgejo/server-cm2-configmap.yaml
Normal file
File diff suppressed because one or more lines are too long
66
specs/forgejo/server-deployment.yaml
Normal file
66
specs/forgejo/server-deployment.yaml
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose --file docker-compose.yml convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: server
|
||||
name: server
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: server
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose --file docker-compose.yml convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.network/forgejo-forgejo: "true"
|
||||
io.kompose.service: server
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: USER_GID
|
||||
value: "1000"
|
||||
- name: USER_UID
|
||||
value: "1000"
|
||||
image: codeberg.org/forgejo/forgejo:9
|
||||
name: forgejo
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
protocol: TCP
|
||||
- containerPort: 22
|
||||
protocol: TCP
|
||||
volumeMounts:
|
||||
- mountPath: /data
|
||||
name: server-claim0
|
||||
- mountPath: /etc/timezone
|
||||
name: server-cm1
|
||||
readOnly: true
|
||||
subPath: timezone
|
||||
- mountPath: /etc/localtime
|
||||
name: server-cm2
|
||||
readOnly: true
|
||||
subPath: localtime
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: server-claim0
|
||||
hostPath:
|
||||
path: /media/kube/forgejo
|
||||
- configMap:
|
||||
items:
|
||||
- key: timezone
|
||||
path: timezone
|
||||
name: server-cm1
|
||||
name: server-cm1
|
||||
- configMap:
|
||||
items:
|
||||
- key: localtime
|
||||
path: localtime
|
||||
name: server-cm2
|
||||
name: server-cm2
|
||||
22
specs/forgejo/server-service.yaml
Normal file
22
specs/forgejo/server-service.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose --file docker-compose.yml convert
|
||||
kompose.version: 1.33.0 (3ce457399)
|
||||
labels:
|
||||
io.kompose.service: server
|
||||
name: server
|
||||
spec:
|
||||
ports:
|
||||
- name: "3000"
|
||||
port: 3000
|
||||
nodePort: 30013
|
||||
targetPort: 3000
|
||||
- name: "222"
|
||||
port: 222
|
||||
targetPort: 22
|
||||
nodePort: 30022
|
||||
type: NodePort
|
||||
selector:
|
||||
io.kompose.service: server
|
||||
12
specs/ghost/ghost-on-kubernetes-main/.editorconfig
Normal file
12
specs/ghost/ghost-on-kubernetes-main/.editorconfig
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = true
|
||||
11
specs/ghost/ghost-on-kubernetes-main/.github/dependabot.yml
vendored
Normal file
11
specs/ghost/ghost-on-kubernetes-main/.github/dependabot.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: docker
|
||||
directory: /
|
||||
schedule:
|
||||
interval: weekly
|
||||
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
schedule:
|
||||
interval: daily
|
||||
174
specs/ghost/ghost-on-kubernetes-main/.github/workflows/build-custom-image.yaml
vendored
Normal file
174
specs/ghost/ghost-on-kubernetes-main/.github/workflows/build-custom-image.yaml
vendored
Normal file
|
|
@ -0,0 +1,174 @@
|
|||
name: Build custom single amd64 image
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
manual-tag:
|
||||
description: 'Manual Tag'
|
||||
required: false
|
||||
default: 'custom'
|
||||
type: string
|
||||
ghost_version:
|
||||
description: 'Ghost version'
|
||||
required: false
|
||||
default: '5.80.2'
|
||||
type: string
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
id-token: write # needed for signing the images with GitHub OIDC Token
|
||||
|
||||
steps:
|
||||
- name: Harden Runner
|
||||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
|
||||
with:
|
||||
egress-policy: audit
|
||||
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
# -
|
||||
# name: Set up QEMU
|
||||
# uses: docker/setup-qemu-action@v3
|
||||
# with:
|
||||
# platforms: linux/amd64
|
||||
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
|
||||
with:
|
||||
driver-opts: |
|
||||
network=host
|
||||
image=moby/buildkit:master
|
||||
driver: docker
|
||||
|
||||
-
|
||||
name: Set up GHOST_VERSION and MANUAL_TAG values, depending on event type (push or workflow_dispatch)
|
||||
id: versions
|
||||
env:
|
||||
GITHUB_EVENT_NAME: ${{ github.event_name }}
|
||||
run: |
|
||||
if [ ${{ env.GITHUB_EVENT_NAME }} == workflow_dispatch ]; then
|
||||
echo "GHOST_VERSION=${{ github.event.inputs.ghost_version }}" >> $GITHUB_OUTPUT
|
||||
echo "MANUAL_TAG=${{ github.event.inputs.manual-tag }}" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "GHOST_VERSION=$(curl -s https://api.github.com/repos/tryghost/ghost/releases/latest | jq '.name' | sed 's/\"//g')" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Show GHOST_VERSION
|
||||
continue-on-error: true
|
||||
run: |
|
||||
echo ${{ steps.versions.outputs.GHOST_VERSION }} &&
|
||||
echo ${{ steps.versions.outputs.MANUAL_TAG }}
|
||||
-
|
||||
name: Docker meta for push on main or tag
|
||||
id: meta-push
|
||||
if: github.event_name == 'push' || github.head_ref == 'v*' || github.head_ref == 'main'
|
||||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ github.repository }}
|
||||
quay.io/${{ vars.QUAY_ORG }}/${{ github.event.repository.name }}
|
||||
docker.io/${{ vars.DOCKER_USER }}/${{ github.event.repository.name }}
|
||||
tags: |
|
||||
type=ref,event=branch
|
||||
type=ref,event=tag
|
||||
type=raw,value=main
|
||||
-
|
||||
name: Docker meta for workflow_dispatch
|
||||
id: meta-workflow-dispatch
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ github.repository }}
|
||||
quay.io/${{ vars.QUAY_ORG }}/${{ github.event.repository.name }}
|
||||
docker.io/${{ vars.DOCKER_USER }}/${{ github.event.repository.name }}
|
||||
tags: |
|
||||
type=ref,event=branch
|
||||
type=raw,value=${{ steps.versions.outputs.MANUAL_TAG }}
|
||||
type=raw,value=v${{ steps.versions.outputs.GHOST_VERSION }}
|
||||
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
|
||||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||
with:
|
||||
registry: docker.io
|
||||
username: ${{ vars.DOCKER_USER }}
|
||||
password: ${{ secrets.DOCKER_PASS }}
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
|
||||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ github.token }}
|
||||
-
|
||||
name: Login to Quay Container Registry
|
||||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
|
||||
continue-on-error: true
|
||||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||
with:
|
||||
registry: quay.io
|
||||
username: ${{ vars.QUAY_USER }}
|
||||
password: ${{ secrets.QUAY_PASS }}
|
||||
|
||||
-
|
||||
name: Build and push version tag
|
||||
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
|
||||
id: build-and-push
|
||||
if: ${{ github.event_name == 'push' || github.head_ref == 'v*' || github.head_ref == 'main' }}
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/amd64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
provenance: true
|
||||
sbom: true
|
||||
push: true
|
||||
tags: ${{ steps.meta-push.outputs.tags }}
|
||||
labels: ${{ steps.meta-push.outputs.labels }}
|
||||
build-args: GHOST_VERSION=${{ steps.versions.outputs.GHOST_VERSION }}
|
||||
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
|
||||
id: build-and-push-workflow-dispatch
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/amd64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
provenance: true
|
||||
sbom: true
|
||||
push: true
|
||||
tags: ${{ steps.meta-workflow-dispatch.outputs.tags }}
|
||||
labels: ${{ steps.meta-workflow-dispatch.outputs.labels }}
|
||||
build-args: GHOST_VERSION=${{ steps.versions.outputs.GHOST_VERSION }}
|
||||
|
||||
-
|
||||
name: Build pull request
|
||||
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
|
||||
id: build-pr
|
||||
if: github.event_name == 'pull_request'
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/amd64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
push: false
|
||||
build-args: GHOST_VERSION=${{ steps.versions.outputs.GHOST_VERSION }}
|
||||
27
specs/ghost/ghost-on-kubernetes-main/.github/workflows/dependency-review.yml
vendored
Normal file
27
specs/ghost/ghost-on-kubernetes-main/.github/workflows/dependency-review.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Dependency Review Action
|
||||
#
|
||||
# This Action will scan dependency manifest files that change as part of a Pull Request,
|
||||
# surfacing known-vulnerable versions of the packages declared or updated in the PR.
|
||||
# Once installed, if the workflow run is marked as required,
|
||||
# PRs introducing known-vulnerable packages will be blocked from merging.
|
||||
#
|
||||
# Source repository: https://github.com/actions/dependency-review-action
|
||||
name: 'Dependency Review'
|
||||
on: [pull_request]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
dependency-review:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Harden Runner
|
||||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
|
||||
with:
|
||||
egress-policy: audit
|
||||
|
||||
- name: 'Checkout Repository'
|
||||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
||||
- name: 'Dependency Review'
|
||||
uses: actions/dependency-review-action@0c155c5e8556a497adf53f2c18edabf945ed8e70 # v4.3.2
|
||||
228
specs/ghost/ghost-on-kubernetes-main/.github/workflows/multi-build.yaml
vendored
Normal file
228
specs/ghost/ghost-on-kubernetes-main/.github/workflows/multi-build.yaml
vendored
Normal file
|
|
@ -0,0 +1,228 @@
|
|||
name: CI Build Multiarch + Trivy
|
||||
|
||||
on:
|
||||
push:
|
||||
# tags:
|
||||
# - "v*"
|
||||
branches:
|
||||
- "main"
|
||||
paths:
|
||||
- "Dockerfile"
|
||||
- .github/workflows/multi-build.yaml
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
manual-tag:
|
||||
description: 'Manual Tag'
|
||||
required: false
|
||||
default: 'main'
|
||||
type: string
|
||||
ghost_version:
|
||||
description: 'Ghost version'
|
||||
required: false
|
||||
default: '5.81.1'
|
||||
type: string
|
||||
|
||||
permissions: write-all
|
||||
|
||||
env:
|
||||
GHCR_IMAGE: ghcr.io/${{ github.repository }}
|
||||
DOCKER_IMAGE: docker.io/${{ vars.DOCKER_USER }}/${{ github.event.repository.name }}
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
platform:
|
||||
- linux/arm64
|
||||
- linux/amd64
|
||||
steps:
|
||||
- name: Harden Runner
|
||||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
|
||||
with:
|
||||
egress-policy: audit
|
||||
|
||||
-
|
||||
name: Prepare
|
||||
run: |
|
||||
platform=${{ matrix.platform }}
|
||||
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
||||
-
|
||||
name: Set up GHOST_VERSION and MANUAL_TAG values, depending on event type (push or workflow_dispatch)
|
||||
id: versions
|
||||
env:
|
||||
GITHUB_EVENT_NAME: ${{ github.event_name }}
|
||||
run: |
|
||||
if [ ${{ env.GITHUB_EVENT_NAME }} == workflow_dispatch ]; then
|
||||
echo "GHOST_VERSION=${{ github.event.inputs.ghost_version }}" >> $GITHUB_OUTPUT
|
||||
echo "MANUAL_TAG=${{ github.event.inputs.manual-tag }}" >> $GITHUB_OUTPUT
|
||||
echo "GHOST_VERSION=${{ github.event.inputs.ghost_version }}" >> $GITHUB_ENV
|
||||
echo "MANUAL_TAG=${{ github.event.inputs.manual-tag }}" >> $GITHUB_ENV
|
||||
else
|
||||
echo "GHOST_VERSION=$(curl -s https://api.github.com/repos/tryghost/ghost/releases/latest | jq '.name' | sed 's/\"//g')" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
-
|
||||
name: Show Ghost version
|
||||
run: |
|
||||
echo "GHOST_VERSION=${{ steps.versions.outputs.GHOST_VERSION }}"
|
||||
echo "MANUAL_TAG=${{ steps.versions.outputs.MANUAL_TAG }}"
|
||||
|
||||
- name: Docker meta default
|
||||
id: meta
|
||||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
||||
continue-on-error: true
|
||||
with:
|
||||
images: ${{ env.GHCR_IMAGE }}
|
||||
labels: | # Add description label for opencontainers specs to the $DOCKER_METADATA_OUTPUT_JSON variable.
|
||||
org.opencontainers.image.description: "${{ github.event.repository.description }}"
|
||||
|
||||
# tags: |
|
||||
# type=raw,value=latest,enable=${{ github.event_name == 'push' || github.ref == 'refs/heads/main' || github.event.ref == 'tags/v*' }}
|
||||
# type=raw,value=main,enable=${{ github.event_name == 'push' || github.ref == 'refs/heads/main' || github.event.ref == 'tags/v*' }}
|
||||
# type=raw,value=${{ steps.versions.outputs.MANUAL_TAG }},enable=${{ github.event_name == 'workflow_dispatch' }}
|
||||
# type=raw,value=v${{ steps.versions.outputs.GHOST_VERSION }},enable=${{ github.event_name == 'workflow_dispatch' }}
|
||||
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
|
||||
with:
|
||||
platforms: amd64,arm64
|
||||
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
|
||||
with:
|
||||
driver-opts: |
|
||||
network=host
|
||||
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push by digest
|
||||
id: build
|
||||
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
|
||||
with:
|
||||
context: .
|
||||
platforms: ${{ matrix.platform }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
build-args: GHOST_VERSION=${{ steps.versions.outputs.GHOST_VERSION }}
|
||||
outputs: type=image,name=${{ env.GHCR_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
||||
provenance: false
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
-
|
||||
name: Export digest
|
||||
run: |
|
||||
mkdir -p /tmp/digests
|
||||
digest="${{ steps.build.outputs.digest }}"
|
||||
touch "/tmp/digests/${digest#sha256:}"
|
||||
-
|
||||
name: Upload digest
|
||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
||||
with:
|
||||
name: digests-${{ env.PLATFORM_PAIR }}
|
||||
path: /tmp/digests/*
|
||||
if-no-files-found: error
|
||||
retention-days: 1
|
||||
|
||||
merge:
|
||||
runs-on: ubuntu-22.04
|
||||
needs:
|
||||
- build
|
||||
steps:
|
||||
- name: Harden Runner
|
||||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
|
||||
with:
|
||||
egress-policy: audit
|
||||
|
||||
-
|
||||
name: Download digests
|
||||
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
||||
with:
|
||||
path: /tmp/digests
|
||||
pattern: digests-*
|
||||
merge-multiple: true
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
|
||||
with:
|
||||
driver-opts: |
|
||||
network=host
|
||||
-
|
||||
name: Docker meta
|
||||
id: meta
|
||||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
||||
with:
|
||||
images: ${{ env.GHCR_IMAGE }}
|
||||
tags: |
|
||||
type=raw,value=latest,enable=${{ github.event_name == 'push' || github.ref == 'refs/heads/main' || github.event.ref == 'tags/v*' }}
|
||||
type=raw,value=main,enable=${{ github.event_name == 'push' || github.ref == 'refs/heads/main' || github.event.ref == 'tags/v*' }}
|
||||
type=raw,value=${{ github.env.MANUAL_TAG }},enable=${{ github.event_name == 'workflow_dispatch' }}
|
||||
type=raw,value=v${{ github.env.GHOST_VERSION }},enable=${{ github.event_name == 'workflow_dispatch' }}
|
||||
-
|
||||
name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name: Create manifest list and pushs
|
||||
working-directory: /tmp/digests
|
||||
id: manifest
|
||||
run: |
|
||||
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||
$(printf '${{ env.GHCR_IMAGE }}@sha256:%s ' *)
|
||||
-
|
||||
name: Inspect image
|
||||
id: inspect
|
||||
run: |
|
||||
docker buildx imagetools inspect ${{ env.GHCR_IMAGE }}:${{ steps.meta.outputs.version }}
|
||||
|
||||
|
||||
- name: Run Trivy vulnerability scanner
|
||||
uses: aquasecurity/trivy-action@7088d18dcb87884bc7b5a4000d5517d758e9aa13 # master
|
||||
continue-on-error: true
|
||||
with:
|
||||
image-ref: '${{ env.GHCR_IMAGE }}:${{ steps.meta.outputs.version }}'
|
||||
format: 'sarif'
|
||||
output: 'trivy-results.sarif'
|
||||
scan-type: 'image'
|
||||
github-pat: '${{ github.token }}'
|
||||
ignore-unfixed: true
|
||||
severity: 'CRITICAL,HIGH'
|
||||
|
||||
|
||||
- name: Upload Trivy scan results to GitHub Security tab
|
||||
uses: github/codeql-action/upload-sarif@41857bab356c91c1decab862427445155c08ca39 # main
|
||||
continue-on-error: true
|
||||
with:
|
||||
sarif_file: 'trivy-results.sarif'
|
||||
|
||||
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
|
||||
continue-on-error: true
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USER }}
|
||||
password: ${{ secrets.DOCKER_PASS }}
|
||||
|
||||
-
|
||||
name: Push to Docker Hub
|
||||
continue-on-error: true
|
||||
run: |
|
||||
docker buildx imagetools create \
|
||||
--tag ${{ env.DOCKER_IMAGE }}:${{ steps.meta.outputs.version }} \
|
||||
${{ env.GHCR_IMAGE }}:${{ steps.meta.outputs.version }}
|
||||
49
specs/ghost/ghost-on-kubernetes-main/.github/workflows/registry-cleanup.yml
vendored
Normal file
49
specs/ghost/ghost-on-kubernetes-main/.github/workflows/registry-cleanup.yml
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
name: Delete old container images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
packages: write
|
||||
repository-projects: read
|
||||
contents: read
|
||||
actions: read
|
||||
id-token: write
|
||||
|
||||
|
||||
jobs:
|
||||
clean-ghcr:
|
||||
name: Delete old unused container images
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
steps:
|
||||
- name: Harden Runner
|
||||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
|
||||
with:
|
||||
egress-policy: audit
|
||||
|
||||
- name: Delete 'ghost-on-kubernetes' containers older than a week
|
||||
uses: sredevopsorg/container-retention-policy@2fa6104b297f90fc3b487b4576ae431867f493cb # v2.0.0
|
||||
with:
|
||||
image-names: ghost-on-kubernetes
|
||||
cut-off: A week ago UTC
|
||||
account-type: org
|
||||
org-name: sredevopsorg
|
||||
keep-at-least: 3
|
||||
untagged-only: false
|
||||
token-type: github-token
|
||||
token: ${{ github.token }}
|
||||
skip-tags: main
|
||||
|
||||
- name: Delete all test containers older than a month, using a wildcard
|
||||
uses: sredevopsorg/container-retention-policy@2fa6104b297f90fc3b487b4576ae431867f493cb # v2.0.0
|
||||
with:
|
||||
image-names: ghost-on-kubernetes
|
||||
cut-off: One month ago UTC
|
||||
account-type: org
|
||||
org-name: sredevopsorg
|
||||
keep-at-least: 3
|
||||
skip-tags: main
|
||||
untagged-only: false
|
||||
token-type: github-token
|
||||
token: ${{ github.token }}
|
||||
76
specs/ghost/ghost-on-kubernetes-main/.github/workflows/scorecards.yml
vendored
Normal file
76
specs/ghost/ghost-on-kubernetes-main/.github/workflows/scorecards.yml
vendored
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
# This workflow uses actions that are not certified by GitHub. They are provided
|
||||
# by a third-party and are governed by separate terms of service, privacy
|
||||
# policy, and support documentation.
|
||||
|
||||
name: Scorecard supply-chain security
|
||||
on:
|
||||
# For Branch-Protection check. Only the default branch is supported. See
|
||||
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
|
||||
branch_protection_rule:
|
||||
# To guarantee Maintained check is occasionally updated. See
|
||||
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
|
||||
schedule:
|
||||
- cron: '20 7 * * 2'
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Declare default permissions as read only.
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
analysis:
|
||||
name: Scorecard analysis
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
# Needed to upload the results to code-scanning dashboard.
|
||||
security-events: write
|
||||
# Needed to publish results and get a badge (see publish_results below).
|
||||
id-token: write
|
||||
contents: read
|
||||
actions: read
|
||||
|
||||
steps:
|
||||
- name: Harden Runner
|
||||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
|
||||
with:
|
||||
egress-policy: audit
|
||||
|
||||
- name: "Checkout code"
|
||||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: "Run analysis"
|
||||
uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1
|
||||
with:
|
||||
results_file: results.sarif
|
||||
results_format: sarif
|
||||
# (Optional) "write" PAT token. Uncomment the `repo_token` line below if:
|
||||
# - you want to enable the Branch-Protection check on a *public* repository, or
|
||||
# - you are installing Scorecards on a *private* repository
|
||||
# To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.
|
||||
# repo_token: ${{ secrets.SCORECARD_TOKEN }}
|
||||
|
||||
# Public repositories:
|
||||
# - Publish results to OpenSSF REST API for easy access by consumers
|
||||
# - Allows the repository to include the Scorecard badge.
|
||||
# - See https://github.com/ossf/scorecard-action#publishing-results.
|
||||
# For private repositories:
|
||||
# - `publish_results` will always be set to `false`, regardless
|
||||
# of the value entered here.
|
||||
publish_results: true
|
||||
|
||||
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
|
||||
# format to the repository Actions tab.
|
||||
- name: "Upload artifact"
|
||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
||||
with:
|
||||
name: SARIF file
|
||||
path: results.sarif
|
||||
retention-days: 5
|
||||
|
||||
# Upload the results to GitHub's code scanning dashboard.
|
||||
- name: "Upload to code-scanning"
|
||||
uses: github/codeql-action/upload-sarif@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
119
specs/ghost/ghost-on-kubernetes-main/.gitignore
vendored
Normal file
119
specs/ghost/ghost-on-kubernetes-main/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,direnv,dotenv,helm,yarn
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,direnv,dotenv,helm,yarn
|
||||
|
||||
### direnv ###
|
||||
.direnv
|
||||
.envrc
|
||||
|
||||
### dotenv ###
|
||||
.env
|
||||
|
||||
### Helm ###
|
||||
# Chart dependencies
|
||||
**/charts/*.tgz
|
||||
|
||||
### macOS ###
|
||||
# General
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Files that might appear in the root of a volume
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
.com.apple.timemachine.donotpresent
|
||||
|
||||
# Directories potentially created on remote AFP share
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
### macOS Patch ###
|
||||
# iCloud generated files
|
||||
*.icloud
|
||||
|
||||
### VisualStudioCode ###
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
### VisualStudioCode Patch ###
|
||||
# Ignore all local history of files
|
||||
.history
|
||||
.ionide
|
||||
|
||||
### yarn ###
|
||||
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
|
||||
|
||||
.yarn/*
|
||||
!.yarn/releases
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# if you are NOT using Zero-installs, then:
|
||||
# comment the following lines
|
||||
!.yarn/cache
|
||||
|
||||
# and uncomment the following lines
|
||||
# .pnp.*
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,direnv,dotenv,helm,yarn
|
||||
|
||||
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
|
||||
|
||||
***.local
|
||||
**/**/*.local
|
||||
**/**/**/*.local
|
||||
backups-ghost/**
|
||||
persistence/**
|
||||
|
||||
node_modules/
|
||||
**/node_modules/
|
||||
***/dist/
|
||||
deployment/config.json
|
||||
themes/elclaustro-casper/okteto.yml
|
||||
deployment/04-service-elclaustro.okteto.yaml
|
||||
deployment/05-ghost-elclaustro.okteto.yaml
|
||||
themes/elclaustro-casper/yarn.lock
|
||||
kubernetes-deployment/config.json
|
||||
dockermount/
|
||||
|
||||
test/
|
||||
**.local.**
|
||||
ghost-upstream/
|
||||
content/
|
||||
config.production.json
|
||||
config.development.json
|
||||
mysql/
|
||||
ghost-local.db
|
||||
**/**/*local*
|
||||
.monokle
|
||||
.monokle
|
||||
docker-compose.yml
|
||||
trustr-production-promote.yaml
|
||||
trustr-staging-build-monorepo.yaml
|
||||
trustr-staging-build-not-monorepo.yaml
|
||||
14
specs/ghost/ghost-on-kubernetes-main/.pre-commit-config.yaml
Normal file
14
specs/ghost/ghost-on-kubernetes-main/.pre-commit-config.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
repos:
|
||||
- repo: https://github.com/gitleaks/gitleaks
|
||||
rev: v8.16.3
|
||||
hooks:
|
||||
- id: gitleaks
|
||||
- repo: https://github.com/pre-commit/mirrors-eslint
|
||||
rev: v8.38.0
|
||||
hooks:
|
||||
- id: eslint
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.4.0
|
||||
hooks:
|
||||
- id: end-of-file-fixer
|
||||
- id: trailing-whitespace
|
||||
15
specs/ghost/ghost-on-kubernetes-main/CODEOWNERS
Normal file
15
specs/ghost/ghost-on-kubernetes-main/CODEOWNERS
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Lines starting with '#' are comments.
|
||||
# Each line is a file pattern followed by one or more owners.
|
||||
|
||||
# More details are here: https://help.github.com/articles/about-codeowners/
|
||||
|
||||
# The '*' pattern is global owners.
|
||||
|
||||
# Order is important. The last matching pattern has the most precedence.
|
||||
# The folders are ordered as follows:
|
||||
|
||||
# In each subsection folders are ordered first by depth, then alphabetically.
|
||||
# This should make it easy to add new rules without breaking existing ones.
|
||||
|
||||
# Global rule:
|
||||
* @ngeorger
|
||||
128
specs/ghost/ghost-on-kubernetes-main/CODE_OF_CONDUCT.md
Executable file
128
specs/ghost/ghost-on-kubernetes-main/CODE_OF_CONDUCT.md
Executable file
|
|
@ -0,0 +1,128 @@
|
|||
# Contributor Covenant Code of Conduct
|
||||
|
||||
## Our Pledge
|
||||
|
||||
We as members, contributors, and leaders pledge to make participation in our
|
||||
community a harassment-free experience for everyone, regardless of age, body
|
||||
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
||||
identity and expression, level of experience, education, socio-economic status,
|
||||
nationality, personal appearance, race, religion, or sexual identity
|
||||
and orientation.
|
||||
|
||||
We pledge to act and interact in ways that contribute to an open, welcoming,
|
||||
diverse, inclusive, and healthy community.
|
||||
|
||||
## Our Standards
|
||||
|
||||
Examples of behavior that contributes to a positive environment for our
|
||||
community include:
|
||||
|
||||
* Demonstrating empathy and kindness toward other people
|
||||
* Being respectful of differing opinions, viewpoints, and experiences
|
||||
* Giving and gracefully accepting constructive feedback
|
||||
* Accepting responsibility and apologizing to those affected by our mistakes,
|
||||
and learning from the experience
|
||||
* Focusing on what is best not just for us as individuals, but for the
|
||||
overall community
|
||||
|
||||
Examples of unacceptable behavior include:
|
||||
|
||||
* The use of sexualized language or imagery, and sexual attention or
|
||||
advances of any kind
|
||||
* Trolling, insulting or derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or email
|
||||
address, without their explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a
|
||||
professional setting
|
||||
|
||||
## Enforcement Responsibilities
|
||||
|
||||
Community leaders are responsible for clarifying and enforcing our standards of
|
||||
acceptable behavior and will take appropriate and fair corrective action in
|
||||
response to any behavior that they deem inappropriate, threatening, offensive,
|
||||
or harmful.
|
||||
|
||||
Community leaders have the right and responsibility to remove, edit, or reject
|
||||
comments, commits, code, wiki edits, issues, and other contributions that are
|
||||
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
||||
decisions when appropriate.
|
||||
|
||||
## Scope
|
||||
|
||||
This Code of Conduct applies within all community spaces, and also applies when
|
||||
an individual is officially representing the community in public spaces.
|
||||
Examples of representing our community include using an official e-mail address,
|
||||
posting via an official social media account, or acting as an appointed
|
||||
representative at an online or offline event.
|
||||
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported to the community leaders responsible for enforcement at
|
||||
info@sredevops.org.
|
||||
All complaints will be reviewed and investigated promptly and fairly.
|
||||
|
||||
All community leaders are obligated to respect the privacy and security of the
|
||||
reporter of any incident.
|
||||
|
||||
## Enforcement Guidelines
|
||||
|
||||
Community leaders will follow these Community Impact Guidelines in determining
|
||||
the consequences for any action they deem in violation of this Code of Conduct:
|
||||
|
||||
### 1. Correction
|
||||
|
||||
**Community Impact**: Use of inappropriate language or other behavior deemed
|
||||
unprofessional or unwelcome in the community.
|
||||
|
||||
**Consequence**: A private, written warning from community leaders, providing
|
||||
clarity around the nature of the violation and an explanation of why the
|
||||
behavior was inappropriate. A public apology may be requested.
|
||||
|
||||
### 2. Warning
|
||||
|
||||
**Community Impact**: A violation through a single incident or series
|
||||
of actions.
|
||||
|
||||
**Consequence**: A warning with consequences for continued behavior. No
|
||||
interaction with the people involved, including unsolicited interaction with
|
||||
those enforcing the Code of Conduct, for a specified period of time. This
|
||||
includes avoiding interactions in community spaces as well as external channels
|
||||
like social media. Violating these terms may lead to a temporary or
|
||||
permanent ban.
|
||||
|
||||
### 3. Temporary Ban
|
||||
|
||||
**Community Impact**: A serious violation of community standards, including
|
||||
sustained inappropriate behavior.
|
||||
|
||||
**Consequence**: A temporary ban from any sort of interaction or public
|
||||
communication with the community for a specified period of time. No public or
|
||||
private interaction with the people involved, including unsolicited interaction
|
||||
with those enforcing the Code of Conduct, is allowed during this period.
|
||||
Violating these terms may lead to a permanent ban.
|
||||
|
||||
### 4. Permanent Ban
|
||||
|
||||
**Community Impact**: Demonstrating a pattern of violation of community
|
||||
standards, including sustained inappropriate behavior, harassment of an
|
||||
individual, or aggression toward or disparagement of classes of individuals.
|
||||
|
||||
**Consequence**: A permanent ban from any sort of public interaction within
|
||||
the community.
|
||||
|
||||
## Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
||||
version 2.0, available at
|
||||
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
||||
|
||||
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
||||
enforcement ladder](https://github.com/mozilla/diversity).
|
||||
|
||||
[homepage]: https://www.contributor-covenant.org
|
||||
|
||||
For answers to common questions about this code of conduct, see the FAQ at
|
||||
https://www.contributor-covenant.org/faq. Translations are available at
|
||||
https://www.contributor-covenant.org/translations.
|
||||
81
specs/ghost/ghost-on-kubernetes-main/Dockerfile
Normal file
81
specs/ghost/ghost-on-kubernetes-main/Dockerfile
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
# This Dockerfile is used to build a container image for running Ghost, a popular open-source blogging platform, on Kubernetes.
|
||||
# The image is based on the official Node.js image and uses the Distroless base image for security and minimalism.
|
||||
|
||||
# Stage 1: Build Environment
|
||||
FROM docker.io/node:iron-buster@sha256:57fe11caf946b3bdcbe370a444ab1d7102123421e62157f62516b2abd4d9b7ae AS build-env
|
||||
|
||||
ENV NODE_ENV production
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
|
||||
# Set the NODE_ENV environment variable to "production"
|
||||
# ENV NODE_ENV production
|
||||
USER root
|
||||
|
||||
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y libvips-dev ca-certificates && \
|
||||
update-ca-certificates
|
||||
|
||||
# Install the latest version of Ghost CLI globally and clean the npm cache
|
||||
RUN yarn config set network-timeout 60000 && \
|
||||
npm config set fetch-timeout 60000 && \
|
||||
yarn global add ghost-cli@latest
|
||||
|
||||
# Define the GHOST_VERSION build argument and set it as an environment variable
|
||||
ARG GHOST_VERSION
|
||||
ENV GHOST_VERSION $GHOST_VERSION
|
||||
|
||||
# Set the installation directory, content directory, and original content directory for Ghost
|
||||
ENV GHOST_INSTALL /var/lib/ghost
|
||||
ENV GHOST_CONTENT /var/lib/ghost/content
|
||||
ENV GHOST_CONTENT_ORIGINAL /var/lib/ghost/content.orig
|
||||
|
||||
# Create the Ghost installation directory and set the owner to the "node" user
|
||||
RUN mkdir -pv "$GHOST_INSTALL" && \
|
||||
chown node:node "$GHOST_INSTALL"
|
||||
|
||||
# Switch to the "node" user and set the working directory to the home directory
|
||||
USER node
|
||||
# WORKDIR /home/node
|
||||
|
||||
# Install Ghost with the specified version, using MySQL as the database, and configure it without prompts, stack traces, setup, and in the specified installation directory
|
||||
RUN yarn config set network-timeout 180000 && \
|
||||
yarn config set verbose true && \
|
||||
ghost install $GHOST_VERSION --db mysql --dbhost mysql --no-prompt --no-stack --no-setup --dir $GHOST_INSTALL
|
||||
|
||||
# Switch back to the root user
|
||||
USER root
|
||||
|
||||
# Move the original content directory to a backup location, create a new content directory, set the correct ownership and permissions, and switch back to the "node" user
|
||||
RUN mv -v $GHOST_CONTENT $GHOST_CONTENT_ORIGINAL && \
|
||||
mkdir -pv $GHOST_CONTENT && \
|
||||
chown -Rfv node:node $GHOST_CONTENT_ORIGINAL && \
|
||||
chown -Rfv node:node $GHOST_CONTENT && \
|
||||
chown -fv node:node $GHOST_INSTALL && \
|
||||
chmod 1777 $GHOST_CONTENT
|
||||
|
||||
# Switch back to the "node" user
|
||||
USER node
|
||||
|
||||
# Stage 2: Final Image
|
||||
FROM gcr.io/distroless/nodejs20-debian12:latest@sha256:2527e2c51783f5cf703299e14f640928dfaab169b7c02525852735e73abbd858
|
||||
|
||||
# Set the installation directory and content directory for Ghost
|
||||
ENV GHOST_INSTALL /var/lib/ghost
|
||||
ENV GHOST_CONTENT /var/lib/ghost/content
|
||||
|
||||
# Copy the Ghost installation directory from the build environment to the final image
|
||||
COPY --from=build-env $GHOST_INSTALL $GHOST_INSTALL
|
||||
|
||||
# Set the working directory to the Ghost installation directory and create a volume for the content directory
|
||||
# The volume is used to persist the data across container restarts, upgrades, and migrations.
|
||||
# It's going to be handled with an init container that will copy the content from the original content directory to the new content directory.
|
||||
WORKDIR $GHOST_INSTALL
|
||||
VOLUME $GHOST_CONTENT
|
||||
COPY --chown=1000:1000 entrypoint.js current/entrypoint.js
|
||||
|
||||
|
||||
# Expose port 2368 for Ghost
|
||||
EXPOSE 2368
|
||||
|
||||
# Set the command to start Ghost
|
||||
CMD ["current/entrypoint.js"]
|
||||
674
specs/ghost/ghost-on-kubernetes-main/LICENSE
Normal file
674
specs/ghost/ghost-on-kubernetes-main/LICENSE
Normal file
|
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
135
specs/ghost/ghost-on-kubernetes-main/README.es.md
Normal file
135
specs/ghost/ghost-on-kubernetes-main/README.es.md
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Ghost en Kubernetes por [SREDevOps.Org](https://sredevops.org)
|
||||
|
||||
<center><a href="https://sredevops.org" target="_blank" rel="noopener noreferrer"><img src="https://github.com/sredevopsdev/.github/assets/34670018/6878e00f-635c-4553-8df7-3b20406fdb4f" alt="SREDevOps.org" width="60%" align="center" /></a></center>
|
||||
|
||||
## Comunidad Site Reliability Engineering (SRE), DevOps, Cloud Native, GNU/Linux y más. 🌎
|
||||
|
||||
[](https://github.com/sredevopsorg/ghost-on-kubernetes/actions/workflows/multi-build.yaml) | [](https://github.com/sredevopsorg/ghost-on-kubernetes/pkgs/container/ghost-on-kubernetes/208368831?tag=main)
|
||||
|
||||
Este repositorio implementa Ghost CMS v5.xx.x de [@TryGhost (upstream)](https://github.com/TryGhost/Ghost) en Kubernetes, como una implementación utilizando nuestra [imagen personalizada](https://github.com/sredevopsorg/ghost-on-kubernetes/blob/main/Dockerfile), basada en la imagen oficial de Ghost 5 debian ["oficial"](https://github.com/docker-library/ghost/blob/master/5/debian/Dockerfile), con modificaciones importantes, como:
|
||||
|
||||
## Cambios recientes
|
||||
|
||||
Hemos realizado algunas actualizaciones significativas para mejorar la seguridad y la eficiencia de nuestra implementación de Ghost en Kubernetes:
|
||||
|
||||
1. **Imagen base Distroless**: La imagen del contenedor de Ghost ahora se basa en una imagen base Distroless. Esto reduce la superficie de ataque eliminando componentes innecesarios como shell, gestores de paquetes y utilidades que no son necesarios para que nuestra aplicación se ejecute. La imagen también se construye mediante un proceso de compilación de varias etapas, lo que hace que la imagen final sea más pequeña y más segura.
|
||||
|
||||
2. **StatefulSet de MySQL**: Hemos cambiado la implementación de MySQL de nuevo a un StatefulSet. Esto proporciona identificadores de red estables y almacenamiento persistente, lo que es importante para las bases de datos como MySQL que necesitan mantener estado.
|
||||
|
||||
3. **Usuario sin privilegios**: Por defecto, el contenedor de Ghost ahora se ejecuta como un usuario sin privilegios. Esto es una buena práctica de seguridad, ya que reduce el potencial daño si el contenedor se compromete. La aplicación Ghost se inicia con un contenedor de inicialización, que realiza tareas de configuración necesarias antes de que comience el contenedor principal de Ghost.
|
||||
|
||||
Consulta el archivo de implementación actualizado [deploy/06-ghost-deployment.yaml](deploy/06-ghost-deployment.yaml) para los detalles de implementación de estos cambios.
|
||||
|
||||
## Características
|
||||
|
||||
- [Soporte ARM64!](#arm64-supported)
|
||||
- Utilizamos la imagen de Node 20 Iron Buster oficial como entorno de compilación.
|
||||
- Se introduce un proceso de compilación de varias etapas para compilar la imagen.
|
||||
- [distroless node 20 debian 12](https://github.com/GoogleContainerTools/distroless/blob/main/README.md) como entorno de ejecución para la imagen final.
|
||||
- Se eliminó gosu, utilizamos el usuario node predeterminado.
|
||||
- Nuevo proceso de Entrypoint, utilizando un script en node.js ejecutado por el usuario node sin privilegios dentro del contenedor distroless.
|
||||
- Utilizamos la última versión de Ghost 5 (cuando se construye la imagen).
|
||||
|
||||
## 📌 ARM64 compatible
|
||||
|
||||
- Las imagenes ahora son multiarch, con soporte amd64 y arm64 [(enlace a la discusión)](https://github.com/sredevopsorg/ghost-on-kubernetes/issues/73#issuecomment-1933939315)
|
||||
|
||||
## Historial de estrellas
|
||||
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=sredevopsorg/ghost-on-kubernetes&type=Date&theme=dark" />
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=sredevopsorg/ghost-on-kubernetes&type=Date" />
|
||||
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=sredevopsorg/ghost-on-kubernetes&type=Date" height="300px" />
|
||||
</picture>
|
||||
|
||||
## Instalación
|
||||
|
||||
## 0. Clonar el repositorio
|
||||
|
||||
```bash
|
||||
# Clonar el repositorio
|
||||
git clone https://github.com/sredevopsorg/ghost-on-kubernetes.git --depth 1 --branch main --single-branch --no-tags
|
||||
# Cambiar de directorio
|
||||
cd ghost-on-kubernetes
|
||||
# Crear una nueva rama para sus cambios en modo desasociado (opcional pero recomendado).
|
||||
git checkout -b my-branch --no-track --detach
|
||||
|
||||
```
|
||||
|
||||
## 1. Comprobar las configuraciones de ejemplo
|
||||
|
||||
- Hay algunos archivos de configuración de ejemplo en el [directorio `examples`](./examples/). Utilizamos la configuración almacenada como `kind: Secret` en el espacio de nombres `ghost-k8s` para la configuración de Ghost y MySQL. Existen dos archivos de configuración de ejemplo:
|
||||
|
||||
- `config.development.sample.yaml`: Este archivo de configuración es para el entorno de desarrollo de Ghost. Utiliza SQLite como base de datos. Puede ser útil si desea probar la configuración de Ghost antes de implementarla en un entorno de producción.
|
||||
|
||||
- `config.production.sample.yaml`: Este archivo de configuración es para el entorno de producción de Ghost. Utiliza MySQL 8, y es el archivo de configuración recomendado para entornos de producción. Requiere TLD (dominio de nivel superior) válido y la [configuración de Ingress para acceder a Ghost desde Internet.](./deploy/07-ingress.yaml)
|
||||
|
||||
- Si necesitas más información sobre la configuración, consulte la [documentación oficial de Ghost](https://ghost.org/docs/config/#custom-configuration-files).
|
||||
|
||||
## 2. Revisar los valores predeterminados y realizar cambios según sea necesario en los siguientes archivos
|
||||
|
||||
- deploy/00-namespace.yaml
|
||||
|
||||
- deploy/01-secrets.yaml
|
||||
|
||||
```yaml
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: mysql-ghost-k8s
|
||||
namespace: ghost-k8s
|
||||
type: Opaque
|
||||
stringData:
|
||||
MYSQL_DATABASE: mysql-db-name # Igual que en deploy/04-config.production.yaml
|
||||
MYSQL_USER: mysql-db-user # Igual que en deploy/04-config.production.yaml
|
||||
MYSQL_PASSWORD: mysql-db-password # Igual que en deploy/04-config.production.yaml
|
||||
MYSQL_ROOT_PASSWORD: mysql-db-root-password # Igual que en deploy/04-config.production.yaml
|
||||
```
|
||||
|
||||
- deploy/02-pvc.yaml # Cambie el storageClassName según sus requisitos
|
||||
- deploy/03-services.yaml # Cambie los hosts según sus requisitos
|
||||
- deploy/04-config.production.yaml # Cambie los valores según los secretos y los servicios
|
||||
- deploy/05-mysql.yaml # Cambie los valores según los secretos y los servicios
|
||||
- deploy/06-ghost-deployment.yaml # Cambie los valores según los secretos y los servicios
|
||||
- deploy/07-ingress.yaml # Opcional
|
||||
|
||||
## 3. Aplicar sus manifestaciones
|
||||
|
||||
```bash
|
||||
# Crear el espacio de nombres
|
||||
kubectl apply -f deploy/00-namespace.yaml
|
||||
# Crear los secretos
|
||||
kubectl apply -f deploy/01-secrets.yaml
|
||||
# Crear el volumen persistente
|
||||
kubectl apply -f deploy/02-pvc.yaml
|
||||
# Crear servicios
|
||||
kubectl apply -f deploy/03-service.yaml
|
||||
# Crear la configuración de Ghost
|
||||
kubectl apply -f deploy/04-config.production.yaml
|
||||
# Crear la base de datos de MySQL
|
||||
kubectl apply -f deploy/05-mysql.yaml
|
||||
# Crear la implementación de Ghost
|
||||
kubectl apply -f deploy/06-ghost-deployment.yaml
|
||||
# Crear el Ingreso de Ghost
|
||||
kubectl apply -f deploy/07-ghost-ingress.yaml
|
||||
|
||||
```
|
||||
|
||||
## 4. Acceder a su Ghost CMS
|
||||
|
||||
```bash
|
||||
# Obtener la dirección IP de entrada
|
||||
kubectl get ing -n ghost-k8s -o wide
|
||||
|
||||
# O bien, cree un reenvío de puertos para acceder al Ghost CMS
|
||||
kubectl port-forward -n ghost-k8s svc/ghost-k8s 2368:2368
|
||||
|
||||
```
|
||||
|
||||
## 5. Abra su navegador y acceda al Ghost CMS
|
||||
|
||||
[http://localhost:2368](http://localhost:2368)
|
||||
|
||||
## 6. Inicie sesión en su Ghost CMS
|
||||
|
||||
[http://localhost:2368/ghost](http://localhost:2368/ghost)
|
||||
147
specs/ghost/ghost-on-kubernetes-main/README.md
Normal file
147
specs/ghost/ghost-on-kubernetes-main/README.md
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
**Ghost on Kubernetes by SREDevOps.Org**
|
||||
|
||||
<center><a href="https://sredevops.org" target="_blank" rel="noopener noreferrer"><img src="https://github.com/sredevopsorg/.github/assets/34670018/6878e00f-635c-4553-8df7-3b20406fdb4f" alt="SREDevOps.org" width="60%" align="center" /></a></center>
|
||||
|
||||
|
||||
**Community for SRE, DevOps, Cloud Native, GNU/Linux, and more. 🌎**
|
||||
|
||||
[](https://github.com/sredevopsorg/ghost-on-kubernetes/actions/workflows/multi-build.yaml) | [](https://github.com/sredevopsorg/ghost-on-kubernetes/pkgs/container/ghost-on-kubernetes/208368831?tag=main)
|
||||
|
||||
This repository implements Ghost CMS v5.xx.x from [TryGhost (upstream)](https://github.com/TryGhost/Ghost) on Kubernetes, using our custom image, based on the official Ghost 5 Debian image, with significant modifications:
|
||||
|
||||
## Recent Changes
|
||||
|
||||
### We've made some significant updates to improve the security and efficiency of our Ghost implementation on Kubernetes
|
||||
|
||||
0. **Multi-arch support**: The images are now multi-arch, with [support for amd64 and arm64](#arm64-compatible).
|
||||
|
||||
1. **Distroless Image**: The Ghost container image now uses a Distroless base image. This reduces the attack surface by removing unnecessary components like shells, package managers, and utilities that aren't needed for our application to run. The image is also built using a multi-stage build process, making the final image smaller and more secure.
|
||||
|
||||
2. **MySQL StatefulSet**: We've changed the MySQL implementation to a StatefulSet. This provides stable network identifiers and persistent storage, which is important for databases like MySQL that need to maintain state.
|
||||
|
||||
3. **Non-Privileged User**: By default, the Ghost container now runs as a non-privileged user. This is a good security practice, as it reduces the potential damage if the container is compromised. The Ghost application initializes with a container initialization script that performs necessary configuration tasks before starting the main Ghost container.
|
||||
|
||||
4. **Init Container**: We've added an init container to the Ghost deployment. This container is responsible for setting up the necessary configuration files and directories before the main Ghost container starts, ensuring the right directories are created, correct ownership for user node inside distroless container UID/GID to 1000:1000, and recreate public folder on every start so the assets are always up to date. Check [deploy/06-ghost-deployment.yaml](./deploy/06-ghost-deployment.yaml) for details on these changes.
|
||||
|
||||
5. **Entrypoint Script**: We've introduced a new entrypoint script that runs as the non-privileged user inside the distroless container. This script is responsible for updating the default theme and starting the Ghost application. This script is executed by the Node user without privileges within the Distroless container, which updates default themes and starts the Ghost application, operation which is performed into the distroless container itself.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Features
|
||||
|
||||
- [ARM64 Support!](#arm64-compatible)
|
||||
- We use the official Node 20 Iron Buster image as our build environment. [Dockerfile](./Dockerfile)
|
||||
- We introduce a multi-stage build process to compile the image.
|
||||
- [Distroless Node 20 Debian 12](https://github.com/GoogleContainerTools/distroless/blob/main/README.md) as our runtime environment for the final image.
|
||||
- We removed gosu, using the default Node user.
|
||||
- New Entrypoint flow, using a Node.js script executed by the Node user without privileges within the Distroless container, which updates default themes and starts the Ghost application, operation which is performed into the distroless container itself.
|
||||
- We use the latest version of Ghost 5 (when the image is built).
|
||||
|
||||
## ARM64 Compatible
|
||||
|
||||
- Images are now multi-arch, with support for amd64 and arm64 [(link to discussion)](https://github.com/sredevopsorg/ghost-on-kubernetes/issues/73#issuecomment-1933939315)
|
||||
|
||||
## Star History
|
||||
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=sredevopsorg/ghost-on-kubernetes&type=Date&theme=dark" />
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=sredevopsorg/ghost-on-kubernetes&type=Date" />
|
||||
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=sredevopsorg/ghost-on-kubernetes&type=Date" height="300px" />
|
||||
</picture>
|
||||
|
||||
## Installation
|
||||
|
||||
### 0. Clone the repository or fork it
|
||||
|
||||
 
|
||||
|
||||
|
||||
```bash
|
||||
# Clone the repository
|
||||
git clone https://github.com/sredevopsorg/ghost-on-kubernetes.git --depth 1 --branch main --single-branch --no-tags
|
||||
# Change directory
|
||||
cd ghost-on-kubernetes
|
||||
# Create a new branch for your changes (optional but recommended).
|
||||
git checkout -b my-branch --no-track --detach
|
||||
```
|
||||
|
||||
### 1. Check the example configurations
|
||||
|
||||
- There are some example configuration files in the [examples](./examples/) directory. We use the stored configuration as a `kind: Secret` in the `ghost-k8s` namespace for Ghost and MySQL configuration. There are two example configuration files:
|
||||
|
||||
- `config.development.sample.yaml`: This configuration file is for the Ghost development environment. It uses SQLite as the database. It can be useful if you want to test the Ghost configuration before implementing it in a production environment.
|
||||
|
||||
- `config.production.sample.yaml`: This configuration file is for the Ghost production environment. It uses MySQL 8, and is the recommended configuration for production environments. It requires a valid top-level domain (TLD) and [configuration for Ingress to access Ghost from the Internet](./deploy/07-ingress.yaml).
|
||||
|
||||
- If you need more information on the configuration, check the [official Ghost documentation](https://ghost.org/docs/config/#custom-configuration-files).
|
||||
|
||||
### 2. Review the default values and make changes as needed in the following files
|
||||
|
||||
- deploy/00-namespace.yaml
|
||||
|
||||
- deploy/01-secrets.yaml
|
||||
|
||||
```yaml
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: mysql-ghost-k8s
|
||||
namespace: ghost-k8s
|
||||
type: Opaque
|
||||
stringData:
|
||||
MYSQL_DATABASE: mysql-db-name # Same as in deploy/04-config.production.yaml
|
||||
MYSQL_USER: mysql-db-user # Same as in deploy/04-config.production.yaml
|
||||
MYSQL_PASSWORD: mysql-db-password # Same as in deploy/04-config.production.yaml
|
||||
MYSQL_ROOT_PASSWORD: mysql-db-root-password # Same as in deploy/04-config.production.yaml
|
||||
```
|
||||
|
||||
- deploy/02-pvc.yaml # Change the storageClassName according to your needs
|
||||
- deploy/03-services.yaml # Change the hosts according to your needs
|
||||
- deploy/04-config.production.yaml # Change the values according to the secrets and services
|
||||
- deploy/05-mysql.yaml # Change the values according to the secrets and services
|
||||
- deploy/06-ghost-deployment.yaml # Change the values according to the secrets and services
|
||||
- deploy/07-ingress.yaml # Optional
|
||||
|
||||
### 3. Apply your manifests
|
||||
|
||||
```bash
|
||||
# Before applying the manifests, make sure you are in the root directory of the repository
|
||||
# 🚨 Be sure to not change the filenames, also be sure to modify the files according to your needs before applying them.
|
||||
# Why? Just because we need to deploy them in order. If you change the filenames, you will need to apply them one by one in the correct order.
|
||||
|
||||
kubectl apply -f ./deploy
|
||||
|
||||
```
|
||||
|
||||
### 4. Access your Ghost CMS
|
||||
|
||||
```bash
|
||||
# Get the ingress IP, if you have configured the Ingress
|
||||
kubectl get ingress -n ghost-k8s -o wide
|
||||
|
||||
# Alternatively, create a port-forwarding rule to access the Ghost CMS
|
||||
kubectl port-forward -n ghost-k8s service/service-ghost-k8s 2368:2368
|
||||
```
|
||||
|
||||
### 5. Open your browser and access your Ghost CMS
|
||||
|
||||
[http://localhost:2368](http://localhost:2368) (if you used the port-forwarding method)
|
||||
[http://your-ghost-domain.com](http://your-ghost-domain.com) (if you used the Ingress method)
|
||||
|
||||
### 6. Log in to your Ghost CMS
|
||||
|
||||
[http://localhost:2368/ghost](http://localhost:2368/ghost) (if you used the port-forwarding method)
|
||||
[http://your-ghost-domain.com/ghost](http://your-ghost-domain.com/ghost) (if you used the Ingress method)
|
||||
|
||||
## Contributing
|
||||
|
||||
We welcome contributions from the community! Please check the [CONTRIBUTING.md](./CONTRIBUTING.md) file for more information on how to contribute to this project.
|
||||
|
||||
## License and Credits
|
||||
|
||||
- This project is licensed under the GNU General Public License v3.0. Please check the [LICENSE](./LICENSE) file for more information.
|
||||
- The Ghost CMS is licensed under the [MIT License](https://github.com/TryGhost/Ghost/blob/main/LICENSE).
|
||||
- The node:20 image and the Distroless image are licensed by their respective owners.
|
||||
|
||||
19
specs/ghost/ghost-on-kubernetes-main/deploy/01-secrets.yaml
Normal file
19
specs/ghost/ghost-on-kubernetes-main/deploy/01-secrets.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: mysql-ghost-k8s-config
|
||||
labels:
|
||||
app: mysql-ghost-k8s
|
||||
app.kubernetes.io/name: mysql-ghost-k8s-config
|
||||
app.kubernetes.io/instance: ghost-k8s
|
||||
app.kubernetes.io/version: "5.8"
|
||||
app.kubernetes.io/component: database-secret
|
||||
app.kubernetes.io/part-of: ghost-k8s
|
||||
app.kubernetes.io/managed-by: sredevopsorg
|
||||
type: Opaque
|
||||
stringData:
|
||||
MYSQL_DATABASE: ghost # Same as in config.production.json
|
||||
MYSQL_USER: ghost # Same as in config.production.json
|
||||
MYSQL_PASSWORD: ghost # Same as in config.production.json
|
||||
MYSQL_ROOT_PASSWORD: ganopacha # Same as in config.production.json
|
||||
|
||||
48
specs/ghost/ghost-on-kubernetes-main/deploy/03-service.yaml
Normal file
48
specs/ghost/ghost-on-kubernetes-main/deploy/03-service.yaml
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: service-ghost-k8s
|
||||
labels:
|
||||
app: ghost-k8s
|
||||
app.kubernetes.io/name: ghost-k8s
|
||||
app.kubernetes.io/instance: ghost-k8s
|
||||
app.kubernetes.io/version: "5.8"
|
||||
app.kubernetes.io/component: service-ghost
|
||||
app.kubernetes.io/part-of: ghost-k8s
|
||||
app.kubernetes.io/managed-by: sredevopsorg
|
||||
|
||||
spec:
|
||||
ports:
|
||||
- port: 2368
|
||||
protocol: TCP
|
||||
targetPort: 2368
|
||||
nodePort: 30030
|
||||
name: ghk8s
|
||||
type: NodePort
|
||||
selector:
|
||||
app: ghost-k8s
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: service-mysql-ghost-k8s
|
||||
labels:
|
||||
app: mysql-ghost-k8s
|
||||
app.kubernetes.io/name: mysql-ghost-k8s
|
||||
app.kubernetes.io/instance: ghost-k8s
|
||||
app.kubernetes.io/version: "5.8"
|
||||
app.kubernetes.io/component: service-db
|
||||
app.kubernetes.io/part-of: ghost-k8s
|
||||
app.kubernetes.io/managed-by: sredevopsorg
|
||||
spec:
|
||||
ports:
|
||||
- port: 3306
|
||||
protocol: TCP
|
||||
targetPort: 3306
|
||||
nodePort: 30031
|
||||
name: mysqlgh
|
||||
type: NodePort
|
||||
selector:
|
||||
app: mysql-ghost-k8s
|
||||
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: ghost-config-prod
|
||||
type: Opaque
|
||||
stringData:
|
||||
config.production.json: |-
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: ghost-config-prod
|
||||
type: Opaque
|
||||
stringData:
|
||||
config.production.json: |-
|
||||
{
|
||||
"url": "https://adztech.duckdns.org",
|
||||
"admin": {
|
||||
"url": "https://adztech.duckdns.org"
|
||||
},
|
||||
"server": {
|
||||
"port": 2368,
|
||||
"host": "0.0.0.0"
|
||||
},
|
||||
"mail": {
|
||||
"transport": "SMTP",
|
||||
"from": "user@server.com",
|
||||
"options": {
|
||||
"service": "Google",
|
||||
"host": "smtp.gmail.com",
|
||||
"port": 465,
|
||||
"secure": true,
|
||||
"auth": {
|
||||
"user": "user@server.com",
|
||||
"pass": "passsword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"logging": {
|
||||
"transports": [
|
||||
"stdout"
|
||||
]
|
||||
},
|
||||
"database": {
|
||||
"client": "mysql",
|
||||
"connection":
|
||||
{
|
||||
"host": "192.168.3.191",
|
||||
"user": "ghost",
|
||||
"password": "ghost",
|
||||
"database": "ghost",
|
||||
"port": "30031"
|
||||
}
|
||||
},
|
||||
"debug": true,
|
||||
"process": "local",
|
||||
"paths": {
|
||||
"contentPath": "/var/lib/ghost/content"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: ghost-config-prod
|
||||
namespace: ghost-k8s
|
||||
type: Opaque
|
||||
stringData:
|
||||
config.production.json: |-
|
||||
{
|
||||
"url": "https://tests.yourdomain.com",
|
||||
"admin": {
|
||||
"url": "https://tests.yourdomain.com",
|
||||
},
|
||||
"server": {
|
||||
"port": 2368,
|
||||
"host": "0.0.0.0"
|
||||
},
|
||||
"mail": {
|
||||
"transport": "SMTP",
|
||||
"from": "user@server.com",
|
||||
"options": {
|
||||
"service": "Google",
|
||||
"host": "smtp.gmail.com",
|
||||
"port": 465,
|
||||
"secure": true,
|
||||
"auth": {
|
||||
"user": "user@server.com",
|
||||
"pass": "passsword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"logging": {
|
||||
"transports": [
|
||||
"stdout"
|
||||
]
|
||||
},
|
||||
"database": {
|
||||
"client": "mysql",
|
||||
"connection":
|
||||
{
|
||||
"host": "service-mysql-ghost-k8s",
|
||||
"user": "mysql-db-user",
|
||||
"password": "mysql-db-password",
|
||||
"database": "mysql-db-name",
|
||||
"port": "3306"
|
||||
}
|
||||
},
|
||||
"debug": false,
|
||||
"process": "local",
|
||||
"paths": {
|
||||
"contentPath": "/var/lib/ghost/content"
|
||||
}
|
||||
}
|
||||
137
specs/ghost/ghost-on-kubernetes-main/deploy/05-mysql.yaml
Normal file
137
specs/ghost/ghost-on-kubernetes-main/deploy/05-mysql.yaml
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
name: mysql-ghost-k8s
|
||||
labels:
|
||||
app: mysql-ghost-k8s
|
||||
app.kubernetes.io/name: mysql-ghost-k8s
|
||||
app.kubernetes.io/instance: ghost-k8s
|
||||
app.kubernetes.io/version: "5.8"
|
||||
app.kubernetes.io/component: database
|
||||
app.kubernetes.io/part-of: ghost-k8s
|
||||
app.kubernetes.io/managed-by: sredevopsorg
|
||||
spec:
|
||||
serviceName: service-mysql-ghost-k8s
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: mysql-ghost-k8s
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: mysql-ghost-k8s
|
||||
annotations:
|
||||
container.apparmor.security.beta.kubernetes.io/mysql-ghost-k8s: runtime/default
|
||||
spec:
|
||||
initContainers:
|
||||
- name: mysql-ghost-k8s-init
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
privileged: false
|
||||
readOnlyRootFilesystem: true
|
||||
image: docker.io/busybox:stable-musl
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- |
|
||||
set -e
|
||||
echo 'Changing ownership of mysql mount directory to 999:999'
|
||||
chown -Rfv 999:999 /mnt/mysql || echo 'Error changing ownership of mysql mount directory to 999:999' && true
|
||||
echo 'Changing ownership of tmp mount directory to 999:999'
|
||||
chown -Rfv 999:999 /mnt/tmp || echo 'Error changing ownership of tmp mount directory to 999:999' && true
|
||||
echo 'Changing ownership of socket mount directory to 999:999'
|
||||
chown -Rfv 999:999 /mnt/var/run/mysqld || echo 'Error changing ownership of socket mount directory to 999:999' && true
|
||||
exit 0
|
||||
|
||||
|
||||
volumeMounts:
|
||||
- name: mysql-ghost-k8s-volume
|
||||
mountPath: /mnt/mysql
|
||||
subPath: mysql-empty-subdir
|
||||
readOnly: false
|
||||
|
||||
- name: mysql-ghost-k8s-tmp
|
||||
mountPath: /mnt/tmp
|
||||
readOnly: false
|
||||
|
||||
- name: mysql-ghost-k8s-socket
|
||||
mountPath: /mnt/var/run/mysqld
|
||||
readOnly: false
|
||||
|
||||
# YOu can ajust the resources according to your needs
|
||||
resources:
|
||||
requests:
|
||||
memory: 0Mi
|
||||
cpu: 0m
|
||||
limits:
|
||||
memory: 1Gi
|
||||
cpu: 900m
|
||||
|
||||
containers:
|
||||
- name: mysql-ghost-k8s
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
privileged: false
|
||||
readOnlyRootFilesystem: true
|
||||
runAsNonRoot: true
|
||||
runAsUser: 999
|
||||
|
||||
image: docker.io/mysql:8.2
|
||||
imagePullPolicy: IfNotPresent # You can change this value according to your needs
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: mysql-ghost-k8s-config
|
||||
resources:
|
||||
requests:
|
||||
memory: 500Mi # You can change this value according to your needs
|
||||
cpu: 400m # You can change this value according to your needs
|
||||
limits:
|
||||
memory: 1Gi # You can change this value according to your needs
|
||||
cpu: 900m # You can change this value according to your needs
|
||||
ports:
|
||||
- containerPort: 3306
|
||||
protocol: TCP
|
||||
name: mysqlgh
|
||||
volumeMounts:
|
||||
- name: mysql-ghost-k8s-volume
|
||||
mountPath: /var/lib/mysql
|
||||
subPath: mysql-empty-subdir
|
||||
readOnly: false
|
||||
|
||||
- name: mysql-ghost-k8s-tmp
|
||||
mountPath: /tmp
|
||||
readOnly: false
|
||||
|
||||
- name: mysql-ghost-k8s-socket
|
||||
mountPath: /var/run/mysqld
|
||||
readOnly: false
|
||||
|
||||
automountServiceAccountToken: false
|
||||
|
||||
# Optional: Uncomment the following to specify node selectors
|
||||
# affinity:
|
||||
# nodeAffinity:
|
||||
# requiredDuringSchedulingIgnoredDuringExecution:
|
||||
# nodeSelectorTerms:
|
||||
# - matchExpressions:
|
||||
# - key: static
|
||||
# operator: In
|
||||
# values:
|
||||
# - "true"
|
||||
|
||||
securityContext:
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
|
||||
volumes:
|
||||
- name: mysql-ghost-k8s-volume
|
||||
hostPath:
|
||||
path: /media/kube/ghost/mysql
|
||||
- name: mysql-ghost-k8s-tmp
|
||||
hostPath:
|
||||
path: /media/kube/ghost/tmp
|
||||
- name: mysql-ghost-k8s-socket
|
||||
hostPath:
|
||||
path: /media/kube/ghost/mysqld
|
||||
automountServiceAccountToken: false
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: ghost-k8s
|
||||
labels:
|
||||
app: ghost-k8s
|
||||
app.kubernetes.io/name: ghost-k8s
|
||||
app.kubernetes.io/instance: ghost-k8s
|
||||
app.kubernetes.io/version: "5.8"
|
||||
app.kubernetes.io/component: ghost
|
||||
app.kubernetes.io/part-of: ghost-k8s
|
||||
app.kubernetes.io/managed-by: sredevopsorg
|
||||
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: ghost-k8s
|
||||
template:
|
||||
metadata:
|
||||
namespace: ghost-k8s
|
||||
labels:
|
||||
app: ghost-k8s
|
||||
spec:
|
||||
automountServiceAccountToken: false # Disable automounting of service account token
|
||||
volumes:
|
||||
- name: k8s-ghost-content
|
||||
hostPath:
|
||||
path: /media/kube/ghost/data
|
||||
|
||||
|
||||
- name: ghost-config-prod
|
||||
secret:
|
||||
secretName: ghost-config-prod
|
||||
defaultMode: 420
|
||||
|
||||
- name: tmp
|
||||
emptyDir:
|
||||
sizeLimit: 64Mi
|
||||
|
||||
initContainers:
|
||||
- name: ghost-k8s-init
|
||||
image: docker.io/busybox:stable-musl
|
||||
env:
|
||||
- name: GHOST_INSTALL
|
||||
value: /var/lib/ghost
|
||||
- name: GHOST_CONTENT
|
||||
value: /var/lib/ghost/content
|
||||
- name: NODE_ENV
|
||||
value: production
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: true
|
||||
allowPrivilegeEscalation: false
|
||||
resources:
|
||||
limits:
|
||||
cpu: 900m
|
||||
memory: 1000Mi
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 128Mi
|
||||
command:
|
||||
- /bin/sh
|
||||
- '-c'
|
||||
- |
|
||||
set -e
|
||||
|
||||
# Check if the following directories exists under $GHOST_CONTENT directory, if not, create them and then change the ownership to 1000:1000
|
||||
export DIRS="files logs apps themes data public settings images media"
|
||||
for dir in $DIRS; do
|
||||
if [ ! -d $GHOST_CONTENT/$dir ]; then
|
||||
echo "Creating $GHOST_CONTENT/$dir directory"
|
||||
mkdir -pv $GHOST_CONTENT/$dir && chown -Rf 1000:1000 $GHOST_CONTENT/$dir || echo "Error creating $GHOST_CONTENT/$dir directory" && true
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
echo 'Delete and clean $GHOST_CONTENT/public directory and recreate it'
|
||||
rm -rfv $GHOST_CONTENT/public && mkdir -pv $GHOST_CONTENT/public || echo 'Error deleting and cleaning $GHOST_CONTENT/public directory and recreating it' && true
|
||||
|
||||
echo 'Check if the directory $GHOST_CONTENT/themes ownership is different from UID 1000 and GID 1000, if so, change it to 1000:1000 recursively and verbose.'
|
||||
if [ "$(stat -c '%u:%g' $GHOST_CONTENT/themes)" != "1000:1000" ]; then
|
||||
echo 'Changing ownership of $GHOST_CONTENT/themes directory to 1000:1000'
|
||||
chown -Rf 1000:1000 $GHOST_CONTENT/themes || echo 'Error changing ownership of $GHOST_CONTENT/themes directory to 1000:1000' && true
|
||||
fi
|
||||
|
||||
echo 'Check if the directory $GHOST_CONTENT/public ownership is different from UID 1000 and GID 1000, if so, change it to 1000:1000 recursively and verbose.'
|
||||
if [ "$(stat -c '%u:%g' $GHOST_CONTENT/public)" != "1000:1000" ]; then
|
||||
echo 'Changing ownership of $GHOST_CONTENT/public directory to 1000:1000'
|
||||
chown -Rf 1000:1000 $GHOST_CONTENT/public || echo 'Error changing ownership of $GHOST_CONTENT/public directory to 1000:1000' && true
|
||||
fi
|
||||
|
||||
volumeMounts:
|
||||
- name: k8s-ghost-content
|
||||
mountPath: /var/lib/ghost/content
|
||||
readOnly: false
|
||||
|
||||
containers:
|
||||
- name: ghost-k8s
|
||||
image: ghcr.io/sredevopsorg/ghost-on-kubernetes:main
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: ghk8s
|
||||
containerPort: 2368
|
||||
protocol: TCP
|
||||
|
||||
# You should uncomment the following lines in production. Change the values according to your environment.
|
||||
|
||||
# livenessProbe:
|
||||
# httpGet:
|
||||
# path: /ghost/api/v4/admin/site/
|
||||
# port: ghk8s
|
||||
# httpHeaders:
|
||||
# - name: X-Forwarded-Proto
|
||||
# value: https
|
||||
# - name: Host
|
||||
# value: tests.yourdomain.com
|
||||
# periodSeconds: 3600
|
||||
# timeoutSeconds: 3
|
||||
# successThreshold: 1
|
||||
# failureThreshold: 1
|
||||
# initialDelaySeconds: 60
|
||||
|
||||
env:
|
||||
- name: NODE_ENV
|
||||
value: production
|
||||
- name: TZ
|
||||
value: America/Santiago
|
||||
resources:
|
||||
limits:
|
||||
cpu: 800m
|
||||
memory: 800Mi
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 200Mi
|
||||
|
||||
volumeMounts:
|
||||
- name: k8s-ghost-content
|
||||
mountPath: /var/lib/ghost/content
|
||||
readOnly: false
|
||||
- name: ghost-config-prod
|
||||
readOnly: true
|
||||
mountPath: /var/lib/ghost/config.production.json
|
||||
subPath: config.production.json
|
||||
- name: tmp # This is the temporary volume mount to allow loading themes
|
||||
mountPath: /tmp
|
||||
readOnly: false
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: true
|
||||
allowPrivilegeEscalation: false
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
|
||||
restartPolicy: Always
|
||||
terminationGracePeriodSeconds: 15
|
||||
dnsPolicy: ClusterFirst
|
||||
# Optional: Uncomment the following to specify node selectors
|
||||
# affinity:
|
||||
# nodeAffinity:
|
||||
# requiredDuringSchedulingIgnoredDuringExecution:
|
||||
# nodeSelectorTerms:
|
||||
# - matchExpressions:
|
||||
# - key: static
|
||||
# operator: In
|
||||
# values:
|
||||
# - "true"
|
||||
|
||||
|
||||
securityContext: {}
|
||||
schedulerName: default-scheduler
|
||||
strategy:
|
||||
type: RollingUpdate
|
||||
rollingUpdate:
|
||||
maxUnavailable: 1
|
||||
maxSurge: 3
|
||||
revisionHistoryLimit: 3
|
||||
progressDeadlineSeconds: 600
|
||||
41
specs/ghost/ghost-on-kubernetes-main/entrypoint.js
Executable file
41
specs/ghost/ghost-on-kubernetes-main/entrypoint.js
Executable file
|
|
@ -0,0 +1,41 @@
|
|||
|
||||
// Source: https://stackoverflow.com/a/22185855/9084561
|
||||
|
||||
const fs = require("fs")
|
||||
const path = require("path")
|
||||
|
||||
/**
|
||||
* Look ma, it's cp -R.
|
||||
* @param {string} src The path to the thing to copy.
|
||||
* @param {string} dest The path to the new copy.
|
||||
*/
|
||||
var copyRecursiveSync = function(src, dest) {
|
||||
var exists = fs.existsSync(src);
|
||||
var stats = exists && fs.statSync(src);
|
||||
var isDirectory = exists && stats.isDirectory();
|
||||
if (isDirectory) {
|
||||
fs.mkdirSync(dest, { recursive: true });
|
||||
fs.readdirSync(src).forEach(function(childItemName) {
|
||||
copyRecursiveSync(path.join(src, childItemName),
|
||||
path.join(dest, childItemName));
|
||||
});
|
||||
} else {
|
||||
fs.copyFileSync(src, dest, fs.constants.COPYFILE_FICLONE);
|
||||
}
|
||||
};
|
||||
|
||||
// Define sources and destinations for both themes named "casper" and "source".
|
||||
let sourcePath = ("/var/lib/ghost/content.orig/themes/");
|
||||
let destinationPath = ("/var/lib/ghost/content/themes");
|
||||
|
||||
// Wrap the function in a try/catch block to handle any errors.
|
||||
try {
|
||||
copyRecursiveSync(sourcePath, destinationPath)
|
||||
console.log("Copy successful!");
|
||||
}
|
||||
catch (error) {
|
||||
console.error("Error copying files: ", error);
|
||||
}
|
||||
|
||||
// Run Ghost from the current version.
|
||||
require("./index.js");
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: ghost-config-prod
|
||||
namespace: ghost-k8s
|
||||
type: Opaque
|
||||
stringData:
|
||||
config.development.json: |-
|
||||
{
|
||||
"url": "http://localhost:2368",
|
||||
"admin": {
|
||||
"url": "http://localhost:2368"
|
||||
},
|
||||
"server": {
|
||||
"port": 2368,
|
||||
"host": "0.0.0.0"
|
||||
},
|
||||
"mail": {
|
||||
"transport": "direct"
|
||||
},
|
||||
"logging": {
|
||||
"transports": [
|
||||
"stdout"
|
||||
]
|
||||
},
|
||||
"database": {
|
||||
"client": "sqlite3",
|
||||
"connection": {
|
||||
"filename": "/var/lib/ghost/content/data/ghost.db"
|
||||
}
|
||||
},
|
||||
"debug": true,
|
||||
"process": "local",
|
||||
"paths": {
|
||||
"contentPath": "/var/lib/ghost/content"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: ghost-config-prod
|
||||
namespace: ghost-k8s
|
||||
type: Opaque
|
||||
stringData:
|
||||
config.production.json: |-
|
||||
{
|
||||
"url": "https://tests.yourdomain.com",
|
||||
"admin": {
|
||||
"url": "https://tests.yourdomain.com"
|
||||
},
|
||||
"server": {
|
||||
"port": 2368,
|
||||
"host": "0.0.0.0"
|
||||
},
|
||||
"mail": {
|
||||
"transport": "SMTP",
|
||||
"from": "user@server.com",
|
||||
"options": {
|
||||
"service": "Google",
|
||||
"host": "smtp.gmail.com",
|
||||
"port": 465,
|
||||
"secure": true,
|
||||
"auth": {
|
||||
"user": "user@server.com",
|
||||
"pass": "passsword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"logging": {
|
||||
"transports": [
|
||||
"stdout"
|
||||
]
|
||||
},
|
||||
"database": {
|
||||
"client": "mysql",
|
||||
"connection":
|
||||
{
|
||||
"host": "service-mysql-ghost-k8s",
|
||||
"user": "mysql-db-user",
|
||||
"password": "mysql-db-password",
|
||||
"database": "mysql-db-name",
|
||||
"port": "3306"
|
||||
}
|
||||
},
|
||||
"debug": true,
|
||||
"process": "local",
|
||||
"paths": {
|
||||
"contentPath": "/var/lib/ghost/content"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
specs/ghost/ghost-on-kubernetes-main/img/entrypoint.js.png
Normal file
BIN
specs/ghost/ghost-on-kubernetes-main/img/entrypoint.js.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 288 KiB |
6
specs/ghost/ghost-on-kubernetes-main/renovate.json
Normal file
6
specs/ghost/ghost-on-kubernetes-main/renovate.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base"
|
||||
]
|
||||
}
|
||||
BIN
specs/ghost/main.zip
Normal file
BIN
specs/ghost/main.zip
Normal file
Binary file not shown.
61
specs/hass/hass-deployement.yaml
Normal file
61
specs/hass/hass-deployement.yaml
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: homeassistant
|
||||
name: homeassistant
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: homeassistant
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.network/hass-default: "true"
|
||||
io.kompose.service: homeassistant
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: LETSENCRYPT_EMAIL
|
||||
value: hokagegano@gmail.com
|
||||
- name: LETSENCRYPT_HOST
|
||||
value: ganhome.duckdns.org
|
||||
- name: VIRTUAL_HOST
|
||||
value: ganhome.duckdns.org
|
||||
- name: VIRTUAL_PORT
|
||||
value: "8123"
|
||||
image: homeassistant/home-assistant:2024.4.0
|
||||
name: home-assistant
|
||||
ports:
|
||||
- containerPort: 8123
|
||||
protocol: TCP
|
||||
securityContext:
|
||||
privileged: true
|
||||
volumeMounts:
|
||||
- mountPath: /config
|
||||
name: homeassistant-config
|
||||
- mountPath: /media
|
||||
name: homeassistant-media
|
||||
- mountPath: /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2674484-if00
|
||||
name: zigbee
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: homeassistant-config
|
||||
hostPath:
|
||||
path: /media/kube/.homeassistant
|
||||
- name: homeassistant-media
|
||||
hostPath:
|
||||
path: /media/kube/.homeassistant/www/surf/videos
|
||||
- name: zigbee
|
||||
hostPath:
|
||||
path: /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2674484-if00
|
||||
|
||||
19
specs/hass/hass-service.yaml
Normal file
19
specs/hass/hass-service.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: homeassistant
|
||||
name: homeassistant
|
||||
spec:
|
||||
ports:
|
||||
- name: "8123"
|
||||
port: 8123
|
||||
nodePort: 30005
|
||||
targetPort: 8123
|
||||
type: NodePort
|
||||
selector:
|
||||
io.kompose.service: homeassistant
|
||||
|
||||
111
specs/joplin/deployement.yaml
Normal file
111
specs/joplin/deployement.yaml
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
apiVersion: v1
|
||||
kind: List
|
||||
items:
|
||||
- apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
deployment.kubernetes.io/revision: "1"
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: postgres
|
||||
name: postgres
|
||||
namespace: default
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: postgres
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: postgres
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: POSTGRES_PASSWORD
|
||||
value: ganopacha
|
||||
- name: POSTGRES_USER
|
||||
value: gano
|
||||
- name: POSTGRES_DB
|
||||
value: joplin
|
||||
image: postgres:16
|
||||
name: postgres
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources: {}
|
||||
terminationMessagePath: /dev/termination-log
|
||||
terminationMessagePolicy: File
|
||||
volumeMounts:
|
||||
- mountPath: /var/lib/postgresql/data
|
||||
name: postgresdata
|
||||
ports:
|
||||
- containerPort: 5432
|
||||
hostPort: 5432
|
||||
protocol: TCP
|
||||
dnsPolicy: ClusterFirst
|
||||
restartPolicy: Always
|
||||
schedulerName: default-scheduler
|
||||
securityContext: {}
|
||||
terminationGracePeriodSeconds: 30
|
||||
volumes:
|
||||
- hostPath:
|
||||
path: /media/kube/postgres
|
||||
type: ""
|
||||
name: postgresdata
|
||||
- apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
deployment.kubernetes.io/revision: "1"
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: joplin
|
||||
name: joplin
|
||||
namespace: default
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
io.kompose.service: joplin
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: joplin
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: APP_PORT
|
||||
value: "22300"
|
||||
- name: APP_BASE_URL
|
||||
value: notepad.gano.duckdns.org
|
||||
- name: DB_CLIENT
|
||||
value: pg
|
||||
- name: POSTGRES_PASSWORD
|
||||
value: ganopacha
|
||||
- name: POSTGRES_DATABASE
|
||||
value: joplin
|
||||
- name: POSTGRES_USER
|
||||
value: gano
|
||||
- name: POSTGRES_PORT
|
||||
value: 192.168.3.30012
|
||||
- name: POSTGRES_HOST
|
||||
value: db
|
||||
image: joplin/server:latest
|
||||
imagePullPolicy: Always
|
||||
name: joplin
|
||||
ports:
|
||||
- containerPort: 22300
|
||||
hostPort: 22300
|
||||
protocol: TCP
|
||||
resources: {}
|
||||
kind: List
|
||||
30
specs/joplin/docker-compose.yml
Normal file
30
specs/joplin/docker-compose.yml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:16
|
||||
volumes:
|
||||
- ./data/postgres:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "5432:5432"
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=ganopacha
|
||||
- POSTGRES_USER=gano
|
||||
- POSTGRES_DB=joplin
|
||||
app:
|
||||
image: joplin/server:latest
|
||||
depends_on:
|
||||
- db
|
||||
ports:
|
||||
- "22300:22300"
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- APP_PORT=22300
|
||||
- APP_BASE_URL=notepad.gano.duckdns.org
|
||||
- DB_CLIENT=pg
|
||||
- POSTGRES_PASSWORD=ganopacha
|
||||
- POSTGRES_DATABASE=joplin
|
||||
- POSTGRES_USER=gano
|
||||
- POSTGRES_PORT=192.168.3.30012
|
||||
- POSTGRES_HOST=db
|
||||
53
specs/joplin/service.yaml
Normal file
53
specs/joplin/service.yaml
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
apiVersion: v1
|
||||
kind: List
|
||||
items:
|
||||
- apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: postgres
|
||||
name: postgres
|
||||
namespace: default
|
||||
spec:
|
||||
ipFamilies:
|
||||
- IPv4
|
||||
ipFamilyPolicy: SingleStack
|
||||
ports:
|
||||
- name: "5432"
|
||||
nodePort: 30012
|
||||
port: 5432
|
||||
protocol: TCP
|
||||
targetPort: 5432
|
||||
selector:
|
||||
io.kompose.service: postgres
|
||||
sessionAffinity: None
|
||||
type: NodePort
|
||||
- apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.cmd: kompose convert
|
||||
kompose.version: 1.32.0 (765fde254)
|
||||
labels:
|
||||
io.kompose.service: joplin
|
||||
name: joplin
|
||||
namespace: default
|
||||
spec:
|
||||
externalTrafficPolicy: Cluster
|
||||
internalTrafficPolicy: Cluster
|
||||
ipFamilies:
|
||||
- IPv4
|
||||
ipFamilyPolicy: SingleStack
|
||||
ports:
|
||||
- name: "22300"
|
||||
nodePort: 30013
|
||||
port: 22300
|
||||
protocol: TCP
|
||||
targetPort: 22300
|
||||
selector:
|
||||
io.kompose.service: joplin
|
||||
sessionAffinity: None
|
||||
type: NodePort
|
||||
25
specs/lacanau/Dockerfile
Normal file
25
specs/lacanau/Dockerfile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
FROM debian:bookworm-slim
|
||||
#FROM debian:buster
|
||||
LABEL name="lacanauscrap" \
|
||||
maintainer="Arnaud DALLIES<dalliesa@gmail.com>" \
|
||||
version="0.01" \
|
||||
description="Screenshot for surf"
|
||||
|
||||
# Install deps + add Chrome Stable + purge all the things
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
xvfb \
|
||||
cutycapt \
|
||||
xauth
|
||||
RUN apt-get purge --auto-remove -y curl gnupg \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY lacanau.sh /root/
|
||||
RUN chmod +x /root/lacanau.sh
|
||||
# Start chrome headlessly, and take the chromeshot.
|
||||
CMD [ "/root/lacanau.sh" ]
|
||||
|
||||
6
specs/lacanau/lacanau.sh
Executable file
6
specs/lacanau/lacanau.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
#Previsions LSI
|
||||
set -x
|
||||
#export PATH="/usr/local/bin:/usr/bin:/bin"
|
||||
xvfb-run --server-args="-screen 0, 1280x1200x24" cutycapt --url='https://www.francesurfinfo.com/affiliation/getPrevision.php?_setAuthCode=9JJx-ULjHH-zrNM&_setAccount=jkPI-PM40J-NmhH&_setDomainName=www.lacanausurfinfo.com&_setPrevision=SURF.MAREE&_setTypeExport=HTML&_setSpot=0jYh-swUvT-4koV' --out=/tmp/surf.png
|
||||
|
||||
1
specs/nginx/data/access/1
Normal file
1
specs/nginx/data/access/1
Normal file
|
|
@ -0,0 +1 @@
|
|||
hokagegano@gmail.com:$apr1$LxXleG1N$HdHoFLONLRM4pf8Cw08RE/
|
||||
BIN
specs/nginx/data/database.sqlite
Normal file
BIN
specs/nginx/data/database.sqlite
Normal file
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
Success
|
||||
202
specs/nginx/data/logs/fallback_access.log
Normal file
202
specs/nginx/data/logs/fallback_access.log
Normal file
|
|
@ -0,0 +1,202 @@
|
|||
[10/Apr/2024:09:09:59 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0" "-"
|
||||
[10/Apr/2024:09:35:42 +0000] 400 - GET http localhost "/" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[10/Apr/2024:09:35:44 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "abuse.xmco.fr" "-"
|
||||
[10/Apr/2024:10:26:24 +0000] 444 - GET https 82.64.202.12 "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36" "-"
|
||||
[10/Apr/2024:10:26:24 +0000] 444 - GET https 82.64.202.12 "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36" "-"
|
||||
[10/Apr/2024:10:27:30 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "python-requests/2.31.0" "-"
|
||||
[10/Apr/2024:10:27:32 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; BitSightBot/1.0)" "-"
|
||||
[10/Apr/2024:11:55:49 +0000] 444 - GET https 82.64.202.12 "/aaa9" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[10/Apr/2024:11:55:50 +0000] 444 - GET https 82.64.202.12 "/aab8" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[10/Apr/2024:11:55:51 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[10/Apr/2024:11:58:27 +0000] 444 - GET https 82.64.202.12 "/cgi-bin/nas_sharing.cgi?user=messagebus&passwd=&cmd=15&system=ZWNobwktZQlcXHg2NVxceDYzXFx4NjhcXHg2ZlxceDIwXFx4NjhcXHg2NVxceDZjXFx4NmNcXHg2ZlxceDc3XFx4NmZcXHg3MlxceDZjXFx4NjR8c2g=" [Client 192.168.3.10] [Length 0] [Gzip -] "Python-urllib/3.4" "-"
|
||||
[10/Apr/2024:12:07:41 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com" "-"
|
||||
[10/Apr/2024:12:26:19 +0000] 400 - - http localhost "-" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[10/Apr/2024:12:50:39 +0000] 444 - POST https 82.64.202.12 "/dns-query" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[10/Apr/2024:12:51:30 +0000] 444 - GET https 82.64.202.12 "/dns-query?dns=AS0BAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[10/Apr/2024:13:16:07 +0000] 444 - GET https nasgano.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[10/Apr/2024:13:16:08 +0000] 444 - GET https nasgano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[10/Apr/2024:15:26:49 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36" "-"
|
||||
[10/Apr/2024:15:34:33 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "python-requests/2.31.0" "-"
|
||||
[10/Apr/2024:15:46:05 +0000] 444 - GET https nasgano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-"
|
||||
[10/Apr/2024:16:18:38 +0000] 444 - GET https 82.64.202.12 "/actuator/health" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[10/Apr/2024:16:23:56 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-"
|
||||
[10/Apr/2024:16:30:03 +0000] 444 - GET https 82.64.202.12 "/.env" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36" "-"
|
||||
[10/Apr/2024:16:54:43 +0000] 444 - POST https 82.64.202.12 "/dns-query" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[10/Apr/2024:16:56:07 +0000] 444 - GET https 82.64.202.12 "/dns-query?dns=gYoBAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[10/Apr/2024:17:05:48 +0000] 444 - GET https 0.0.0.0 "/3rdpartylicenses.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "xfa1" "-"
|
||||
[10/Apr/2024:18:58:43 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-"
|
||||
[10/Apr/2024:19:07:41 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36" "-"
|
||||
[10/Apr/2024:22:22:53 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36 OPR/39.0.2256.48" "-"
|
||||
[10/Apr/2024:23:03:56 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[10/Apr/2024:23:11:28 +0000] 444 - POST https 82.64.202.12 "/Autodiscover/Autodiscover.xml" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[10/Apr/2024:23:24:04 +0000] 444 - POST https 82.64.202.12 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[10/Apr/2024:23:31:59 +0000] 444 - GET https 82.64.202.12 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[10/Apr/2024:23:45:11 +0000] 444 - GET https 82.64.202.12 "/?XDEBUG_SESSION_START=phpstorm" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:00:17:01 +0000] 444 - GET https 82.64.202.12 "/ReportServer" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[11/Apr/2024:00:47:38 +0000] 444 - GET https 82.64.202.12 "/dns-query?dns=tUUBAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[11/Apr/2024:00:48:54 +0000] 444 - GET https 82.64.202.12 "/console/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:01:01:08 +0000] 444 - POST https 82.64.202.12 "/dns-query" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[11/Apr/2024:01:06:39 +0000] 444 - GET https 82.64.202.12 "/_ignition/execute-solution" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:01:08:17 +0000] 444 - GET https 82.64.202.12 "/dns-query?dns=KkEBAAABAAAAAAAABHRlc3QJbWVzaHRydXN0BHdvcmsAAAEAAQ" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[11/Apr/2024:01:14:18 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:01:18:43 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:01:34:03 +0000] 444 - POST https 82.64.202.12 "/dns-query" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[11/Apr/2024:02:05:10 +0000] 444 - GET https 82.64.202.12 "/actuator/gateway/routes" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:02:20:16 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[11/Apr/2024:02:27:54 +0000] 444 - GET https 82.64.202.12 "/geoserver" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:02:46:11 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[11/Apr/2024:03:01:45 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com" "-"
|
||||
[11/Apr/2024:03:32:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:03:32:46 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:03:32:47 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:03:32:50 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:03:33:42 +0000] 444 - GET https 82.64.202.12 "/zabbix/favicon.ico" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-"
|
||||
[11/Apr/2024:03:33:57 +0000] 444 - GET https 82.64.202.12 "/favicon.ico" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-"
|
||||
[11/Apr/2024:04:22:07 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; MALNJS; rv:11.0) like Gecko" "-"
|
||||
[11/Apr/2024:05:33:33 +0000] 444 - POST https 82.64.202.12 "/wp-content/themes/twentytwentyone/inc/block-css.php" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.74 Safari/537.36 Edg/79.0.309.43" "-"
|
||||
[11/Apr/2024:05:33:35 +0000] 444 - POST https 82.64.202.12 "/QKBFJBVZsPKeqFS/HAchGeCttVyEtqZ.php" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:36 +0000] 444 - GET https 82.64.202.12 "/search/s.php?i=1&id=APOX8NWOV42320" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:37 +0000] 444 - POST https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:40 +0000] 444 - GET https 82.64.202.12 "/zMLUH93A" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:42 +0000] 444 - GET https 82.64.202.12 "/new/login" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:46 +0000] 444 - GET https www.sogou.com "/viwwwsogou?op=8&query=%E7%A8%8F%E5%BB%BA%09%E9%BE%90%E1%B7%A2" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" "-"
|
||||
[11/Apr/2024:05:33:47 +0000] 444 - GET https 82.64.202.12 "/wh/glass.php" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:49 +0000] 444 - GET https 82.64.202.12 "/login" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:50 +0000] 444 - POST https 82.64.202.12 "/nvidia_license_upd.php" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" "-"
|
||||
[11/Apr/2024:05:33:52 +0000] 400 - POST http 82.64.202.12 "/session" [Client 192.168.3.10] [Length 230] [Gzip -] "localhost.localdomain/go-network-v2.0.1" "-"
|
||||
[11/Apr/2024:05:33:53 +0000] 444 - POST https 82.64.202.12 "//api/attach" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36" "-"
|
||||
[11/Apr/2024:05:33:55 +0000] 444 - GET https docs.microsoft.com "/c/msdownload/update/software/update/2021/11/6632de33-967441-x86.cab" [Client 192.168.3.10] [Length 0] [Gzip -] "Windows-Update-Agent/10.0.10011.16384 Client-Protocol/2.31" "-"
|
||||
[11/Apr/2024:05:33:56 +0000] 444 - GET https docs.microsoft.com "/c/msdownload/update/software/update/2021/11/6632de33-967441-x86.cab" [Client 192.168.3.10] [Length 0] [Gzip -] "Windows-Update-Agent/10.0.10011.16384 Client-Protocol/2.31" "-"
|
||||
[11/Apr/2024:05:33:57 +0000] 444 - GET https 82.64.202.12 "/fw6I" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:05:33:59 +0000] 444 - GET https 82.64.202.12 "/fw6I" [Client 192.168.3.10] [Length 0] [Gzip -] "'Mozilla/5.0" "-"
|
||||
[11/Apr/2024:06:19:08 +0000] 400 - SSTP_DUPLEX_POST https 82.64.202.12 "/sra_{BA195980-CD49-458b-9E23-C84EE0ADCD75}/" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:07:41:48 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36" "-"
|
||||
[11/Apr/2024:08:03:39 +0000] 444 - POST https 82.64.202.12 "/dns-query" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[11/Apr/2024:08:10:47 +0000] 444 - GET https 82.64.202.12 "/dns-query?dns=PqMBAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ" [Client 192.168.3.10] [Length 0] [Gzip -] "Chrome" "-"
|
||||
[11/Apr/2024:08:58:46 +0000] 444 - GET https grafana.ganocloud.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:08:58:47 +0000] 444 - GET https grafana.ganocloud.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:08:58:49 +0000] 444 - GET https grafana.ganocloud.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:08:58:52 +0000] 444 - GET https grafana.ganocloud.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[11/Apr/2024:10:47:55 +0000] 444 - GET https 82.64.202.12 "/version" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[11/Apr/2024:11:03:35 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57" "-"
|
||||
[11/Apr/2024:11:06:50 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57" "-"
|
||||
[11/Apr/2024:13:52:59 +0000] 444 - GET https 82.64.202.12 "/+CSCOE+/logon.html" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203" "-"
|
||||
[11/Apr/2024:13:56:42 +0000] 444 - GET https 82.64.202.12 "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[11/Apr/2024:14:01:51 +0000] 400 - - http localhost "-" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:15:10:26 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36" "-"
|
||||
[11/Apr/2024:15:10:28 +0000] 444 - GET https 82.64.202.12 "/static/admin/javascript/hetong.js" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36" "-"
|
||||
[11/Apr/2024:15:16:43 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.29.0" "-"
|
||||
[11/Apr/2024:15:16:50 +0000] 444 - OPTIONS https localhost "/" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:15:16:58 +0000] 444 - GET https localhost "/nice%20ports%2C/Tri%6Eity.txt%2ebak" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:15:17:06 +0000] 400 - - http localhost "-" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:15:17:12 +0000] 400 - - http localhost "-" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:15:37:49 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 9_2_1) AppleWebKit/602.52 (KHTML, like Gecko) Chrome/56.0.2661 Safari/537.36" "-"
|
||||
[11/Apr/2024:17:57:11 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36" "-"
|
||||
[11/Apr/2024:18:17:14 +0000] 444 - GET https www.ganocloud.duckdns.org "/.well-known/security.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-"
|
||||
[11/Apr/2024:19:29:03 +0000] 444 - GET https localhost "/" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[11/Apr/2024:19:29:04 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36" "-"
|
||||
[11/Apr/2024:19:29:05 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4 240.111 Safari/537.36" "-"
|
||||
[11/Apr/2024:20:11:51 +0000] 444 - GET https 82.64.202.12 "/autodiscover/autodiscover.json?@zdi/Powershell" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[11/Apr/2024:21:11:52 +0000] 444 - GET https grafana.ganocloud.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-"
|
||||
[11/Apr/2024:21:23:41 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com" "-"
|
||||
[12/Apr/2024:03:06:10 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "python-requests/2.31.0" "-"
|
||||
[12/Apr/2024:04:30:59 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com" "-"
|
||||
[12/Apr/2024:04:45:31 +0000] 444 - GET https localhost "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0" "-"
|
||||
[12/Apr/2024:05:28:25 +0000] 444 - GET https 82.64.202.12 "/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[12/Apr/2024:05:28:25 +0000] 444 - GET https 82.64.202.12 "/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[12/Apr/2024:05:28:25 +0000] 444 - GET https 82.64.202.12 "/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[12/Apr/2024:05:28:25 +0000] 444 - GET https 82.64.202.12 "/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[12/Apr/2024:05:56:54 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[12/Apr/2024:06:06:15 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36" "-"
|
||||
[12/Apr/2024:06:31:03 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:06:35:56 +0000] 444 - POST https 82.64.202.12 "/Autodiscover/Autodiscover.xml" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:06:45:59 +0000] 444 - POST https 82.64.202.12 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:06:58:26 +0000] 444 - GET https 82.64.202.12 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:07:57:03 +0000] 444 - GET https 82.64.202.12 "/?XDEBUG_SESSION_START=phpstorm" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:07:15 +0000] 400 - GET https localhost "/jXWC" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[12/Apr/2024:08:08:15 +0000] 444 - GET https 82.64.202.12 "/console/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:16:07 +0000] 444 - GET https gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:18:13 +0000] 444 - GET https 82.64.202.12 "/_ignition/execute-solution" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:25:50 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:41:08 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:49:11 +0000] 444 - GET https gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-"
|
||||
[12/Apr/2024:08:52:35 +0000] 444 - GET https 82.64.202.12 "/actuator/gateway/routes" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:09:36:31 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-"
|
||||
[12/Apr/2024:09:51:08 +0000] 444 - GET https 82.64.202.12 "/geoserver" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:09:53:17 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||
[12/Apr/2024:11:46:23 +0000] 444 - GET https 82.64.202.12 "/remote/login" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36" "-"
|
||||
[12/Apr/2024:11:56:02 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15" "-"
|
||||
[12/Apr/2024:11:58:59 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15" "-"
|
||||
[12/Apr/2024:12:06:02 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0" "-"
|
||||
[12/Apr/2024:12:19:22 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36" "-"
|
||||
[12/Apr/2024:12:19:23 +0000] 444 - GET https 82.64.202.12 "/Public/home/js/check.js" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36" "-"
|
||||
[12/Apr/2024:12:19:25 +0000] 444 - GET https 82.64.202.12 "/static/admin/javascript/hetong.js" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36" "-"
|
||||
[12/Apr/2024:12:34:40 +0000] 444 - GET https 82.64.202.12 "/owa/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-"
|
||||
[12/Apr/2024:13:11:51 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0" "-"
|
||||
[12/Apr/2024:13:59:51 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.25" "-"
|
||||
[12/Apr/2024:14:41:48 +0000] 444 - GET https www.ganhome.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:15:07:57 +0000] 444 - GET https gan0.freeboxos.fr "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-"
|
||||
[12/Apr/2024:16:01:59 +0000] 444 - GET https 82.64.202.12 "/.env" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-"
|
||||
[12/Apr/2024:16:53:10 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "python-requests/2.31.0" "-"
|
||||
[12/Apr/2024:17:13:04 +0000] 444 - GET https nasgano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:17:13:04 +0000] 444 - GET https www.nasgano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:17:26:02 +0000] 444 - GET https gan0.freeboxos.fr "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36" "-"
|
||||
[12/Apr/2024:17:26:02 +0000] 444 - GET https gan0.freeboxos.fr "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36" "-"
|
||||
[12/Apr/2024:17:30:07 +0000] 444 - GET https lns-bzn-41-82-64-202-12.adsl.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:17:30:08 +0000] 444 - GET https lns-bzn-41-82-64-202-12.adsl.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:17:30:10 +0000] 444 - GET https lns-bzn-41-82-64-202-12.adsl.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:17:30:13 +0000] 444 - GET https lns-bzn-41-82-64-202-12.adsl.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:17:41:01 +0000] 444 - GET https www.pve.ganocloud.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:17:42:32 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[12/Apr/2024:18:21:31 +0000] 444 - GET https nasgano.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:18:21:32 +0000] 444 - GET https nasgano.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:18:21:34 +0000] 444 - GET https nasgano.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:18:21:37 +0000] 444 - GET https nasgano.duckdns.org "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:18:46:45 +0000] 444 - GET https 82.64.202.12 "/.env" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36" "-"
|
||||
[12/Apr/2024:19:07:32 +0000] 444 - GET https grafana.ganocloud.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:19:07:33 +0000] 444 - GET https www.grafana.ganocloud.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:19:49:41 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "HTTP Banner Detection (https://security.ipip.net)" "-"
|
||||
[12/Apr/2024:19:55:02 +0000] 444 - GET https www.tesla.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[12/Apr/2024:21:12:58 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:21:12:59 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:21:13:00 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:21:13:03 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/robots.txt" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (compatible; wpbot/1.0; +https://forms.gle/ajBaxygz9jSR8p8G9)" "-"
|
||||
[12/Apr/2024:22:59:22 +0000] 444 - GET https 82.64.202.12 "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[13/Apr/2024:04:13:42 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-"
|
||||
[13/Apr/2024:06:45:46 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36" "-"
|
||||
[13/Apr/2024:06:45:47 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36" "-"
|
||||
[13/Apr/2024:06:45:49 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/90.0" "-"
|
||||
[13/Apr/2024:06:45:51 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/90.0" "-"
|
||||
[13/Apr/2024:08:11:13 +0000] 444 - GET https www.ganocloud.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 \x5C(Windows NT 10.0\x5C; Win64\x5C; x64\x5C) AppleWebKit/537.36 \x5C(KHTML, like Gecko\x5C) Chrome/100.0.4896.60 Safari/537.36" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https localhost "/" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/.git/HEAD" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/Portal/Portal.mwsl" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - POST https 82-64-202-12.subs.proxad.net "/scripts/WPnBr.dll" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - POST https 82-64-202-12.subs.proxad.net "/sdk" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/localstart.jsa" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/rest/applinks/1.0/manifest" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 400 - SSTP_DUPLEX_POST https 82.64.202.12 "/sra_{BA195980-CD49-458b-9E23-C84EE0ADCD75}/" [Client 192.168.3.10] [Length 154] [Gzip -] "-" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/CSS/Miniweb.css" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/Portal0000.htm" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:44 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/ISWi" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/nmaplowercheck1713000284" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/docs/cplugError.html/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/__Additional" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/confluence/rest/applinks/1.0/manifest" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/HNAP1" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/favicon.ico" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:45 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:46 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:46 +0000] 444 - HEAD https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:47 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:47 +0000] 444 - GET https 82-64-202-12.subs.proxad.net "/" [Client 192.168.3.10] [Length 0] [Gzip -] "curl/7.54.0" "-"
|
||||
[13/Apr/2024:09:24:55 +0000] 444 - GET https localhost "/" [Client 192.168.3.10] [Length 0] [Gzip -] "-" "-"
|
||||
[13/Apr/2024:10:17:04 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com" "-"
|
||||
[13/Apr/2024:11:37:53 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-"
|
||||
[13/Apr/2024:12:22:03 +0000] 444 - GET https 82.64.202.12 "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" "-"
|
||||
[13/Apr/2024:12:31:35 +0000] 444 - GET https gan0.freeboxos.fr "/" [Client 192.168.3.10] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:82.0) Gecko/20100101 Firefox/82.0" "-"
|
||||
BIN
specs/nginx/data/logs/fallback_access.log.1.gz
Normal file
BIN
specs/nginx/data/logs/fallback_access.log.1.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_access.log.2.gz
Normal file
BIN
specs/nginx/data/logs/fallback_access.log.2.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_access.log.3.gz
Normal file
BIN
specs/nginx/data/logs/fallback_access.log.3.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_access.log.4.gz
Normal file
BIN
specs/nginx/data/logs/fallback_access.log.4.gz
Normal file
Binary file not shown.
6
specs/nginx/data/logs/fallback_error.log
Normal file
6
specs/nginx/data/logs/fallback_error.log
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
2024/04/13 08:32:11 [alert] 289#289: *8 open socket #33 left in connection 10
|
||||
2024/04/13 08:32:11 [alert] 289#289: *9 open socket #34 left in connection 11
|
||||
2024/04/13 08:32:11 [alert] 289#289: aborting
|
||||
2024/04/13 10:34:56 [alert] 343#343: *1 open socket #3 left in connection 8
|
||||
2024/04/13 10:34:56 [alert] 343#343: *2 open socket #11 left in connection 9
|
||||
2024/04/13 10:34:56 [alert] 343#343: aborting
|
||||
BIN
specs/nginx/data/logs/fallback_error.log.1.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.1.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.10.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.10.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.2.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.2.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.3.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.3.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.4.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.4.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.5.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.5.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.6.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.6.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.7.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.7.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.8.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.8.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/fallback_error.log.9.gz
Normal file
BIN
specs/nginx/data/logs/fallback_error.log.9.gz
Normal file
Binary file not shown.
0
specs/nginx/data/logs/letsencrypt-requests_access.log
Normal file
0
specs/nginx/data/logs/letsencrypt-requests_access.log
Normal file
0
specs/nginx/data/logs/letsencrypt-requests_error.log
Normal file
0
specs/nginx/data/logs/letsencrypt-requests_error.log
Normal file
234
specs/nginx/data/logs/proxy-host-10_access.log
Normal file
234
specs/nginx/data/logs/proxy-host-10_access.log
Normal file
|
|
@ -0,0 +1,234 @@
|
|||
[13/Apr/2024:10:16:48 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "http://192.168.3.11:81/"
|
||||
[13/Apr/2024:10:16:48 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3114] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:17:01 +0000] - 403 403 - POST https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 430] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/accounts/login/?next=/"
|
||||
[13/Apr/2024:10:17:57 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "python-requests/2.31.0" "-"
|
||||
[13/Apr/2024:10:17:57 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3179] [Gzip -] [Sent-to 192.168.3.189] "python-requests/2.31.0" "-"
|
||||
[13/Apr/2024:10:17:59 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-"
|
||||
[13/Apr/2024:10:18:00 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3114] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-"
|
||||
[13/Apr/2024:10:18:02 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "-" "-"
|
||||
[13/Apr/2024:10:18:09 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA981174) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.1379.98 Mobile Safari/537.3" "-"
|
||||
[13/Apr/2024:10:18:10 +0000] - 302 302 - GET https paper.gano.duckdns.org "/server" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:10 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.vscode/sftp.json" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:11 +0000] - 302 302 - GET https paper.gano.duckdns.org "/about" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:12 +0000] - 302 302 - GET https paper.gano.duckdns.org "/debug/default/view?panel=config" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:13 +0000] - 302 302 - GET https paper.gano.duckdns.org "/v2/_catalog" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:13 +0000] - 302 302 - GET https paper.gano.duckdns.org "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:14 +0000] - 302 302 - GET https paper.gano.duckdns.org "/server-status" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:15 +0000] - 302 302 - GET https paper.gano.duckdns.org "/login.action" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:16 +0000] - 302 302 - GET https paper.gano.duckdns.org "/_all_dbs" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (l9scan/2.0.2313e2230323e24363e22383; +https://leakix.net)" "-"
|
||||
[13/Apr/2024:10:18:17 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.DS_Store" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:17 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.env" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:18 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.git/config" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:19 +0000] - 302 302 - GET https paper.gano.duckdns.org "/s/2313e2230323e24363e22383/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:20 +0000] - 302 302 - GET https paper.gano.duckdns.org "/config.json" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:21 +0000] - 302 302 - GET https paper.gano.duckdns.org "/telescope/requests" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:21 +0000] - 302 302 - GET https paper.gano.duckdns.org "/?rest_route=/wp/v2/users/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:18:23 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" "-"
|
||||
[13/Apr/2024:10:18:23 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3118] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" "-"
|
||||
[13/Apr/2024:10:19:15 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:17 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:18 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:20 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:20 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:21 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:21 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:21 +0000] - 502 502 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 154] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:26 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3115] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:19:28 +0000] - 302 302 - POST https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/accounts/login/?next=/"
|
||||
[13/Apr/2024:10:19:28 +0000] - 200 200 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 3303] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/accounts/login/?next=/"
|
||||
[13/Apr/2024:10:19:29 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/ui_settings/" [Client 192.168.3.10] [Length 848] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/"
|
||||
[13/Apr/2024:10:19:29 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/saved_views/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:19:29 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/tasks/" [Client 192.168.3.10] [Length 16628] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:19:29 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/statistics/" [Client 192.168.3.10] [Length 257] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/users/?page=1&page_size=100000" [Client 192.168.3.10] [Length 1228] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/tags/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/correspondents/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/storage_paths/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/document_types/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true" [Client 192.168.3.10] [Length 15883] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - POST https paper.gano.duckdns.org "/api/documents/selection_data/" [Client 192.168.3.10] [Length 106] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/322/thumb/" [Client 192.168.3.10] [Length 15930] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/thumb/" [Client 192.168.3.10] [Length 18508] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/318/thumb/" [Client 192.168.3.10] [Length 11036] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/288/thumb/" [Client 192.168.3.10] [Length 13918] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/316/thumb/" [Client 192.168.3.10] [Length 26284] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/285/thumb/" [Client 192.168.3.10] [Length 17100] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/277/thumb/" [Client 192.168.3.10] [Length 16903] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/289/thumb/" [Client 192.168.3.10] [Length 25716] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/249/thumb/" [Client 192.168.3.10] [Length 14554] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/276/thumb/" [Client 192.168.3.10] [Length 17728] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/253/thumb/" [Client 192.168.3.10] [Length 20194] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/270/thumb/" [Client 192.168.3.10] [Length 14008] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/197/thumb/" [Client 192.168.3.10] [Length 6794] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/211/thumb/" [Client 192.168.3.10] [Length 14638] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/199/thumb/" [Client 192.168.3.10] [Length 6548] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/208/thumb/" [Client 192.168.3.10] [Length 9466] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/192/thumb/" [Client 192.168.3.10] [Length 16874] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/148/thumb/" [Client 192.168.3.10] [Length 34960] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/144/thumb/" [Client 192.168.3.10] [Length 16192] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/145/thumb/" [Client 192.168.3.10] [Length 13048] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/53/thumb/" [Client 192.168.3.10] [Length 6360] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/47/thumb/" [Client 192.168.3.10] [Length 11628] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/119/thumb/" [Client 192.168.3.10] [Length 5672] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/139/thumb/" [Client 192.168.3.10] [Length 14654] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/103/thumb/" [Client 192.168.3.10] [Length 8188] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/38/thumb/" [Client 192.168.3.10] [Length 6874] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/28/thumb/" [Client 192.168.3.10] [Length 19210] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/187/thumb/" [Client 192.168.3.10] [Length 20270] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/304/thumb/" [Client 192.168.3.10] [Length 18026] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/149/thumb/" [Client 192.168.3.10] [Length 16766] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/251/thumb/" [Client 192.168.3.10] [Length 22538] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/189/thumb/" [Client 192.168.3.10] [Length 16628] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/188/thumb/" [Client 192.168.3.10] [Length 19350] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/190/thumb/" [Client 192.168.3.10] [Length 15142] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/186/thumb/" [Client 192.168.3.10] [Length 37150] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/245/thumb/" [Client 192.168.3.10] [Length 18940] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/185/thumb/" [Client 192.168.3.10] [Length 18446] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/241/thumb/" [Client 192.168.3.10] [Length 22554] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/306/thumb/" [Client 192.168.3.10] [Length 18054] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/193/thumb/" [Client 192.168.3.10] [Length 17016] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/226/thumb/" [Client 192.168.3.10] [Length 22602] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/248/thumb/" [Client 192.168.3.10] [Length 18596] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/183/thumb/" [Client 192.168.3.10] [Length 29570] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/246/thumb/" [Client 192.168.3.10] [Length 18596] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/308/thumb/" [Client 192.168.3.10] [Length 18034] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/179/thumb/" [Client 192.168.3.10] [Length 20000] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/180/thumb/" [Client 192.168.3.10] [Length 21770] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/178/thumb/" [Client 192.168.3.10] [Length 17522] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/176/thumb/" [Client 192.168.3.10] [Length 18470] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:35 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/182/thumb/" [Client 192.168.3.10] [Length 17666] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:10:19:37 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/custom_fields/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330"
|
||||
[13/Apr/2024:10:19:37 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/custom_fields/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:37 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/?full_perms=true" [Client 192.168.3.10] [Length 1435] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:37 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/share_links/" [Client 192.168.3.10] [Length 2] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:38 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/preview/" [Client 192.168.3.10] [Length 1821683] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:38 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/metadata/" [Client 192.168.3.10] [Length 598] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:38 +0000] - 304 304 - GET https paper.gano.duckdns.org "/api/documents/330/preview/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:40 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/suggestions/" [Client 192.168.3.10] [Length 81] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents/330/details"
|
||||
[13/Apr/2024:10:19:44 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/statistics/" [Client 192.168.3.10] [Length 257] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:23:14 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99.0.4844.47 Mobile/15E148 Safari/604.1" "-"
|
||||
[13/Apr/2024:10:23:14 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99.0.4844.47 Mobile/15E148 Safari/604.1" "-"
|
||||
[13/Apr/2024:10:23:14 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3120] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99.0.4844.47 Mobile/15E148 Safari/604.1" "-"
|
||||
[13/Apr/2024:10:23:14 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3116] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99.0.4844.47 Mobile/15E148 Safari/604.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/config.php" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/config.yml" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/config.yml" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/backup.zip" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.ssh/id_rsa" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/web.config" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.env.production" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/backup.sql" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.env" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/feed" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/dump.sql" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/config.xml" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/wp-admin/setup-config.php" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/.git/HEAD" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:43 +0000] - 302 302 - GET https paper.gano.duckdns.org "/backup.tar.gz" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "-"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/config.php" [Client 192.168.3.10] [Length 3181] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/config.php"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/config.yml" [Client 192.168.3.10] [Length 3186] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/config.yml"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/.ssh/id_rsa" [Client 192.168.3.10] [Length 3182] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/.ssh/id_rsa"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/backup.zip" [Client 192.168.3.10] [Length 3181] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/backup.zip"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/config.yml" [Client 192.168.3.10] [Length 3186] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/config.yml"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/web.config" [Client 192.168.3.10] [Length 3183] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/web.config"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/.env.production" [Client 192.168.3.10] [Length 3183] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/.env.production"
|
||||
[13/Apr/2024:10:27:45 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/backup.sql" [Client 192.168.3.10] [Length 3188] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/backup.sql"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/.env" [Client 192.168.3.10] [Length 3180] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/.env"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/feed" [Client 192.168.3.10] [Length 3184] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/feed"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/dump.sql" [Client 192.168.3.10] [Length 3184] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/dump.sql"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/config.xml" [Client 192.168.3.10] [Length 3181] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/config.xml"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/admin/login/?next=/wp-admin/setup-config.php" [Client 192.168.3.10] [Length 1523] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/wp-admin/setup-config.php"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/.git/HEAD" [Client 192.168.3.10] [Length 3186] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/.git/HEAD"
|
||||
[13/Apr/2024:10:27:46 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/backup.tar.gz" [Client 192.168.3.10] [Length 3183] [Gzip -] [Sent-to 192.168.3.189] "Go-http-client/1.1" "https://paper.gano.duckdns.org/backup.tar.gz"
|
||||
[13/Apr/2024:10:34:11 +0000] - 101 101 - GET https paper.gano.duckdns.org "/ws/status/" [Client 192.168.3.10] [Length 268] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:43:00 +0000] - 200 200 - GET https paper.gano.duckdns.org "/dashboard" [Client 192.168.3.10] [Length 3258] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:10:43:00 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/ui_settings/" [Client 192.168.3.10] [Length 849] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:43:01 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/saved_views/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:43:01 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/tasks/" [Client 192.168.3.10] [Length 16628] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:43:01 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/statistics/" [Client 192.168.3.10] [Length 257] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:10:46:24 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)" "-"
|
||||
[13/Apr/2024:10:46:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3181] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)" "https://paper.gano.duckdns.org"
|
||||
[13/Apr/2024:10:57:17 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "-" "-"
|
||||
[13/Apr/2024:10:57:17 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 8226] [Gzip -] [Sent-to 192.168.3.189] "-" "-"
|
||||
[13/Apr/2024:11:28:02 +0000] - 101 101 - GET https paper.gano.duckdns.org "/ws/status/" [Client 192.168.3.10] [Length 814] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:11:37:47 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)" "-"
|
||||
[13/Apr/2024:11:37:48 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3182] [Gzip -] [Sent-to 192.168.3.189] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)" "https://paper.gano.duckdns.org"
|
||||
[13/Apr/2024:12:51:20 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:12:51:20 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3118] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:12:51:22 +0000] - 302 302 - POST https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/accounts/login/?next=/"
|
||||
[13/Apr/2024:12:51:22 +0000] - 200 200 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 3303] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/accounts/login/?next=/"
|
||||
[13/Apr/2024:12:51:23 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/ui_settings/" [Client 192.168.3.10] [Length 847] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/"
|
||||
[13/Apr/2024:12:51:23 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/saved_views/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:12:51:23 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/tasks/" [Client 192.168.3.10] [Length 16628] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:12:51:23 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/statistics/" [Client 192.168.3.10] [Length 257] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/users/?page=1&page_size=100000" [Client 192.168.3.10] [Length 1194] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/correspondents/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/tags/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/document_types/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/storage_paths/?page=1&page_size=100000" [Client 192.168.3.10] [Length 61] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/?page=1&page_size=50&ordering=-created&truncate_content=true" [Client 192.168.3.10] [Length 15883] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - POST https paper.gano.duckdns.org "/api/documents/selection_data/" [Client 192.168.3.10] [Length 106] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents"
|
||||
[13/Apr/2024:12:51:25 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/322/thumb/" [Client 192.168.3.10] [Length 15930] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/276/thumb/" [Client 192.168.3.10] [Length 17728] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/318/thumb/" [Client 192.168.3.10] [Length 11036] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/330/thumb/" [Client 192.168.3.10] [Length 18508] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/288/thumb/" [Client 192.168.3.10] [Length 13918] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/316/thumb/" [Client 192.168.3.10] [Length 26284] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/289/thumb/" [Client 192.168.3.10] [Length 25716] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/270/thumb/" [Client 192.168.3.10] [Length 14008] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/277/thumb/" [Client 192.168.3.10] [Length 16903] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/285/thumb/" [Client 192.168.3.10] [Length 17100] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/192/thumb/" [Client 192.168.3.10] [Length 16874] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/249/thumb/" [Client 192.168.3.10] [Length 14554] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/211/thumb/" [Client 192.168.3.10] [Length 14638] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/148/thumb/" [Client 192.168.3.10] [Length 34960] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/253/thumb/" [Client 192.168.3.10] [Length 20194] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/197/thumb/" [Client 192.168.3.10] [Length 6794] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/145/thumb/" [Client 192.168.3.10] [Length 13048] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/139/thumb/" [Client 192.168.3.10] [Length 14654] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/144/thumb/" [Client 192.168.3.10] [Length 16192] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/208/thumb/" [Client 192.168.3.10] [Length 9466] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/199/thumb/" [Client 192.168.3.10] [Length 6548] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/119/thumb/" [Client 192.168.3.10] [Length 5672] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/47/thumb/" [Client 192.168.3.10] [Length 11628] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/53/thumb/" [Client 192.168.3.10] [Length 6360] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/103/thumb/" [Client 192.168.3.10] [Length 8188] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/38/thumb/" [Client 192.168.3.10] [Length 6874] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/28/thumb/" [Client 192.168.3.10] [Length 19210] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/187/thumb/" [Client 192.168.3.10] [Length 20270] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/149/thumb/" [Client 192.168.3.10] [Length 16766] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/190/thumb/" [Client 192.168.3.10] [Length 15142] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/189/thumb/" [Client 192.168.3.10] [Length 16628] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/251/thumb/" [Client 192.168.3.10] [Length 22538] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/304/thumb/" [Client 192.168.3.10] [Length 18026] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/188/thumb/" [Client 192.168.3.10] [Length 19350] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/306/thumb/" [Client 192.168.3.10] [Length 18054] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/245/thumb/" [Client 192.168.3.10] [Length 18940] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/193/thumb/" [Client 192.168.3.10] [Length 17016] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/241/thumb/" [Client 192.168.3.10] [Length 22554] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/185/thumb/" [Client 192.168.3.10] [Length 18446] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/186/thumb/" [Client 192.168.3.10] [Length 37150] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/226/thumb/" [Client 192.168.3.10] [Length 22602] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/246/thumb/" [Client 192.168.3.10] [Length 18596] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/183/thumb/" [Client 192.168.3.10] [Length 29570] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/248/thumb/" [Client 192.168.3.10] [Length 18596] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/179/thumb/" [Client 192.168.3.10] [Length 20000] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/178/thumb/" [Client 192.168.3.10] [Length 17522] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/182/thumb/" [Client 192.168.3.10] [Length 17666] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/308/thumb/" [Client 192.168.3.10] [Length 18034] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/176/thumb/" [Client 192.168.3.10] [Length 18470] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:26 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/documents/180/thumb/" [Client 192.168.3.10] [Length 21770] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/documents?sort=created&reverse=1&page=1"
|
||||
[13/Apr/2024:12:51:27 +0000] - 200 200 - GET https paper.gano.duckdns.org "/api/statistics/" [Client 192.168.3.10] [Length 257] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "https://paper.gano.duckdns.org/dashboard"
|
||||
[13/Apr/2024:13:06:33 +0000] - 101 101 - GET https paper.gano.duckdns.org "/ws/status/" [Client 192.168.3.10] [Length 246] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0" "-"
|
||||
[13/Apr/2024:13:11:47 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-"
|
||||
[13/Apr/2024:13:11:48 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3179] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-"
|
||||
[13/Apr/2024:13:18:01 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36" "-"
|
||||
[13/Apr/2024:13:18:02 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3274] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36" "-"
|
||||
[13/Apr/2024:13:18:41 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" "-"
|
||||
[13/Apr/2024:13:18:41 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3119] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0" "-"
|
||||
[13/Apr/2024:13:18:42 +0000] - 302 302 - GET https paper.gano.duckdns.org "/" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Ubuntu; Linux aarch64; rv:122.0) Gecko/20100101 Firefox/122.0" "-"
|
||||
[13/Apr/2024:13:18:42 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3123] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (X11; Ubuntu; Linux aarch64; rv:122.0) Gecko/20100101 Firefox/122.0" "-"
|
||||
[13/Apr/2024:13:18:43 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/" [Client 192.168.3.10] [Length 3111] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "-"
|
||||
[13/Apr/2024:13:18:43 +0000] - 200 200 - HEAD https paper.gano.duckdns.org "/accounts/login/?next=/accounts/login/favicon.ico" [Client 192.168.3.10] [Length 0] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36" "-"
|
||||
[13/Apr/2024:13:18:43 +0000] - 200 200 - GET https paper.gano.duckdns.org "/accounts/login/?next=/accounts/login/favicon.ico" [Client 192.168.3.10] [Length 3116] [Gzip -] [Sent-to 192.168.3.191] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36" "-"
|
||||
9
specs/nginx/data/logs/proxy-host-10_error.log
Normal file
9
specs/nginx/data/logs/proxy-host-10_error.log
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
2024/04/13 10:19:15 [error] 465#465: *860 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:17 [error] 465#465: *864 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:18 [error] 465#465: *866 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:20 [error] 465#465: *868 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:20 [error] 465#465: *870 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:21 [error] 465#465: *872 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:21 [error] 465#465: *874 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:21 [error] 465#465: *876 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET / HTTP/2.0", upstream: "http://192.168.3.189:30002/", host: "paper.gano.duckdns.org"
|
||||
2024/04/13 10:19:38 [warn] 465#465: *876 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000000012 while reading upstream, client: 192.168.3.10, server: paper.gano.duckdns.org, request: "GET /api/documents/330/preview/ HTTP/2.0", upstream: "http://192.168.3.189:30002/api/documents/330/preview/", host: "paper.gano.duckdns.org", referrer: "https://paper.gano.duckdns.org/documents/330/details"
|
||||
0
specs/nginx/data/logs/proxy-host-1_access.log
Normal file
0
specs/nginx/data/logs/proxy-host-1_access.log
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_access.log.1.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_access.log.1.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_access.log.2.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_access.log.2.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_access.log.3.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_access.log.3.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_access.log.4.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_access.log.4.gz
Normal file
Binary file not shown.
0
specs/nginx/data/logs/proxy-host-1_error.log
Normal file
0
specs/nginx/data/logs/proxy-host-1_error.log
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.1.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.1.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.10.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.10.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.2.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.2.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.3.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.3.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.4.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.4.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.5.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.5.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.6.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.6.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.7.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.7.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.8.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.8.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-1_error.log.9.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-1_error.log.9.gz
Normal file
Binary file not shown.
7102
specs/nginx/data/logs/proxy-host-2_access.log
Normal file
7102
specs/nginx/data/logs/proxy-host-2_access.log
Normal file
File diff suppressed because it is too large
Load diff
BIN
specs/nginx/data/logs/proxy-host-2_access.log.1.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-2_access.log.1.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-2_access.log.2.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-2_access.log.2.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-2_access.log.3.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-2_access.log.3.gz
Normal file
Binary file not shown.
BIN
specs/nginx/data/logs/proxy-host-2_access.log.4.gz
Normal file
BIN
specs/nginx/data/logs/proxy-host-2_access.log.4.gz
Normal file
Binary file not shown.
1202
specs/nginx/data/logs/proxy-host-2_error.log
Normal file
1202
specs/nginx/data/logs/proxy-host-2_error.log
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue