Compare commits
6 Commits
ac4488b3df
...
esh-vm-doc
| Author | SHA1 | Date | |
|---|---|---|---|
| 805200cd47 | |||
|
|
da9ee87977 | ||
| 4015fe1915 | |||
| 4e26186252 | |||
| 1d73215d93 | |||
| d562b9d0d9 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
data/
|
||||
**/.env
|
||||
conf/homepage/logs/
|
||||
|
||||
41
compose/adguard/docker-compose.yml
Normal file
41
compose/adguard/docker-compose.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
#version: "3"
|
||||
services:
|
||||
adguardhome:
|
||||
image: adguard/adguardhome
|
||||
container_name: adguardhome
|
||||
ports:
|
||||
- 53:53/tcp
|
||||
- 53:53/udp
|
||||
- 784:784/udp
|
||||
- 853:853/tcp
|
||||
- 3000:3000/tcp
|
||||
- 8080:80/tcp
|
||||
- 8443:443/tcp
|
||||
volumes:
|
||||
- adguard-workdir:/opt/adguardhome/work
|
||||
- adguard-confdir:/opt/adguardhome/conf
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
# This means the container will be stopped during backup to ensure
|
||||
# backup integrity. You can omit this label if stopping during backup
|
||||
# not required. Can be omitted if false.
|
||||
- docker-volume-backup.stop-during-backup=false
|
||||
- homepage.group=ESH
|
||||
- homepage.name=AdGuard Home
|
||||
- homepage.icon=si-adguard
|
||||
- homepage.description=DNS
|
||||
- homepage.href=http://10.0.50.45:8080
|
||||
- homepage.widget.type=adguard
|
||||
- homepage.widget.url=http://10.0.50.45:8080
|
||||
- homepage.widget.username=lkraven
|
||||
- homepage.widget.password=P@@fml123
|
||||
networks:
|
||||
- tnet
|
||||
|
||||
volumes:
|
||||
adguard-workdir: null
|
||||
adguard-confdir: null
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
23
compose/calibre-web/compose.yaml
Normal file
23
compose/calibre-web/compose.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
calibre-web:
|
||||
image: lscr.io/linuxserver/calibre-web:latest
|
||||
container_name: calibre-web
|
||||
environment:
|
||||
- PUID=2000
|
||||
- PGID=2000
|
||||
- TZ=Etc/UTC
|
||||
- DOCKER_MODS=linuxserver/mods:universal-calibre #optional
|
||||
- OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
|
||||
volumes:
|
||||
- /opt/docker/conf/calibre-web:/config
|
||||
- /mnt/books/calibre/calibre_library:/books
|
||||
labels:
|
||||
- homepage.group=Media
|
||||
- homepage.name=Calibre-Web
|
||||
- homepage.icon=si-calibreweb
|
||||
- homepage.description=EBook Server (esh)
|
||||
- homepage.href=http://10.0.50.45:8083
|
||||
ports:
|
||||
- 8083:8083
|
||||
restart: unless-stopped
|
||||
networks: {}
|
||||
32
compose/calibre/compose.yaml
Normal file
32
compose/calibre/compose.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
version: "2.1"
|
||||
services:
|
||||
calibre:
|
||||
image: lscr.io/linuxserver/calibre:latest
|
||||
container_name: calibre
|
||||
security_opt:
|
||||
- seccomp:unconfined #optional
|
||||
environment:
|
||||
- PUID=2000
|
||||
- PGID=2000
|
||||
- TZ=America/Los_Angeles
|
||||
- PASSWORD= #optional
|
||||
- CLI_ARGS= #optional
|
||||
volumes:
|
||||
- /mnt/books/calibre:/config
|
||||
ports:
|
||||
- 8082:8080
|
||||
- 8181:8181
|
||||
- 8281:8081
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
- homepage.group=Media
|
||||
- homepage.name=Calibre
|
||||
- homepage.icon=mdi-bookshelf
|
||||
- homepage.description=EBook Server (esh)
|
||||
- homepage.href=http://10.0.50.45:8082
|
||||
networks:
|
||||
- tnet
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
25
compose/ddns-route53/compose.yaml
Normal file
25
compose/ddns-route53/compose.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: "3.5"
|
||||
services:
|
||||
ddns-route53:
|
||||
image: crazymax/ddns-route53:latest
|
||||
container_name: ddns-route53
|
||||
environment:
|
||||
- TZ=America/Los_Angeles
|
||||
- SCHEDULE=*/30 * * * *
|
||||
- LOG_LEVEL=info
|
||||
- LOG_JSON=false
|
||||
- DDNSR53_CREDENTIALS_ACCESSKEYID=${R53_KEY}
|
||||
- DDNSR53_CREDENTIALS_SECRETACCESSKEY=${R53_SECRET}
|
||||
- DDNSR53_ROUTE53_HOSTEDZONEID=${R53_ZONEID}
|
||||
- DDNSR53_ROUTE53_RECORDSSET_0_NAME=${NAME}
|
||||
- DDNSR53_ROUTE53_RECORDSSET_0_TYPE=${TYPE}
|
||||
- DDNSR53_ROUTE53_RECORDSSET_0_TTL=${TTL}
|
||||
restart: always
|
||||
labels:
|
||||
- homepage.group=ESH
|
||||
- homepage.name=DDNS Updater
|
||||
- homepage.icon=mdi-dns
|
||||
- homepage.description=esteban.phasefinal.com
|
||||
env_file:
|
||||
- .env
|
||||
networks: {}
|
||||
@@ -10,33 +10,19 @@ services:
|
||||
- dockge_data:/app/data
|
||||
- /opt/docker/compose:/opt/docker/compose
|
||||
labels:
|
||||
- homepage.group=PFI-ANA
|
||||
- homepage.group=ESH
|
||||
- homepage.name=Dockge
|
||||
- homepage.icon=si-portainer
|
||||
- homepage.description=Docker
|
||||
- homepage.href=http://10.250.50.70:5001
|
||||
- homepage.href=http://10.0.50.45:5001
|
||||
environment:
|
||||
# Tell Dockge where is your stacks directory
|
||||
- DOCKGE_STACKS_DIR=/opt/docker/compose
|
||||
networks:
|
||||
- tnet
|
||||
backup:
|
||||
image: offen/docker-volume-backup:latest
|
||||
restart: always
|
||||
volumes:
|
||||
# volumes to backup.
|
||||
- dockge_data:/backup/dockge:ro
|
||||
- /mnt/backup/docker/ana-docker/dockge:/archive
|
||||
# can omit below if not stopping service.
|
||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- tnet
|
||||
|
||||
volumes:
|
||||
dockge_data: null
|
||||
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
|
||||
29
compose/drawio/compose.yaml
Normal file
29
compose/drawio/compose.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
version: "3.5"
|
||||
services:
|
||||
drawio:
|
||||
image: jgraph/drawio
|
||||
container_name: drawio
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8087:8080
|
||||
- 8447:8443
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- curl -f http://127.0.0.1:8080 || exit 1
|
||||
interval: 1m30s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
start_period: 10s
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=draw.io
|
||||
- homepage.icon=mdi-pencil
|
||||
- homepage.description=Draw.IO Graphing (esh)
|
||||
- homepage.href=http://10.0.50.45:8087
|
||||
networks:
|
||||
- tnet
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
14
compose/esphome/compose.yaml
Normal file
14
compose/esphome/compose.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
version: '3'
|
||||
services:
|
||||
esphome:
|
||||
container_name: esphome
|
||||
image: ghcr.io/esphome/esphome
|
||||
volumes:
|
||||
- /path/to/esphome/config:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
restart: always
|
||||
privileged: true
|
||||
network_mode: host
|
||||
environment:
|
||||
- USERNAME=test
|
||||
- PASSWORD=ChangeMe
|
||||
@@ -1,38 +0,0 @@
|
||||
version: "3"
|
||||
services:
|
||||
server:
|
||||
image: gitea/gitea:latest
|
||||
container_name: gitea
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- GITEA__database__DB_TYPE=postgres
|
||||
- GITEA__database__HOST=${DB_IP}:5432
|
||||
- GITEA__database__NAME=gitea
|
||||
- GITEA__database__USER=gitea
|
||||
- GITEA__database__PASSWD=gitea
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /opt/docker/data/gitea:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- 3000:3000
|
||||
- 222:22
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=Gitea
|
||||
- homepage.icon=si-gitea
|
||||
- homepage.description=Git Repo (ana)
|
||||
- homepage.href=https://gitea.phasefinal.com
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.gitea.tls=true
|
||||
- traefik.http.routers.gitea.rule=Host(`gitea.phasefinal.com`)
|
||||
- traefik.http.routers.gitea.tls.certresolver=anaprod
|
||||
- traefik.http.services.gitea.loadbalancer.server.port=3000
|
||||
networks:
|
||||
- tnet
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
31
compose/homeassistant/compose.yaml
Normal file
31
compose/homeassistant/compose.yaml
Normal file
@@ -0,0 +1,31 @@
|
||||
services:
|
||||
homeassistant:
|
||||
image: homeassistant/home-assistant:latest
|
||||
container_name: homeassistant
|
||||
environment:
|
||||
- PUID=2000
|
||||
- PGID=2000
|
||||
- TZ=America/Los_Angeles
|
||||
volumes:
|
||||
- homeassistant_data:/config
|
||||
#- /opt/docker/conf/homeassistant:/config
|
||||
ports:
|
||||
- 8123:8123 #optional
|
||||
# devices:
|
||||
# - /path/to/device:/path/to/device #optional
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=Home Assistant
|
||||
- homepage.icon=si-homeassistant
|
||||
- homepage.description=Home Automation (esh)
|
||||
- homepage.href=http://10.0.50.45:8123
|
||||
networks:
|
||||
- traefik-net
|
||||
networks:
|
||||
traefik-net:
|
||||
external: true
|
||||
volumes:
|
||||
homeassistant_data: null
|
||||
28
compose/homepage/compose.yaml
Normal file
28
compose/homepage/compose.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
homepage:
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
container_name: homepage
|
||||
environment:
|
||||
PUID: 0
|
||||
PGID: 0
|
||||
ports:
|
||||
- 5100:3000
|
||||
volumes:
|
||||
- /opt/docker/conf/homepage:/app/config # Make sure your local config directory exists
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- tnet
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.homepage.rule=host(`eshhome`) || host(`10.0.50.45`)
|
||||
|| host (`eshhome.esteban.net`)
|
||||
- traefik.http.services.homepage.loadbalancer.server.port=3000
|
||||
- traefik.http.routers.homepage.priority=1
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
@@ -1,19 +0,0 @@
|
||||
#version: '3'
|
||||
services:
|
||||
mailrise:
|
||||
image: yoryan/mailrise:latest
|
||||
container_name: mailrise
|
||||
labels:
|
||||
- homepage.group=PFI-ANA
|
||||
- homepage.name=Mailrise
|
||||
- homepage.icon=mdi-mail
|
||||
- homepage.description=Mail to Notification Agent
|
||||
- homepage.href=http://10.250.50.70:8025
|
||||
volumes:
|
||||
- /opt/docker/conf/mailrise/mailrise.conf:/etc/mailrise.conf:ro
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- USER=1000:1000
|
||||
ports:
|
||||
- 8025:8025
|
||||
networks: {}
|
||||
@@ -1,41 +0,0 @@
|
||||
#version: "2.4"
|
||||
|
||||
services:
|
||||
mattermost:
|
||||
image: mattermost/mattermost-team-edition:latest
|
||||
restart: unless-stopped
|
||||
tmpfs:
|
||||
- /tmp
|
||||
volumes:
|
||||
- /opt/docker/conf/mattermost:/mattermost/config
|
||||
- /opt/docker/data/mattermost/data:/mattermost/data
|
||||
- /opt/docker/data/mattermost/logs:/mattermost/logs
|
||||
- /opt/docker/data/mattermost/plugins:/mattermost/plugins
|
||||
- /opt/docker/data/mattermost/client/plugins:/mattermost/client/plugins
|
||||
- /opt/docker/data/mattermost/bleve-indexes:/mattermost/bleve-indexes
|
||||
environment:
|
||||
TZ: America/Los_Angeles
|
||||
DOMAIN: mm.phasefinal.com
|
||||
MM_SQLSETTINGS_DRIVERNAME: postgres
|
||||
MM_SQLSETTINGS_DATASOURCE: ${DATASOURCE}
|
||||
ports:
|
||||
- 8065:8065
|
||||
- 8443:8443/udp
|
||||
user: 1000:1000
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=MatterMost
|
||||
- homepage.icon=si-mattermost
|
||||
- homepage.description=Chat Application (ana)
|
||||
- homepage.href=https://mm.phasefinal.com
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.mattermost.tls=true
|
||||
- traefik.http.routers.mattermost.rule=Host(`mm.phasefinal.com`)
|
||||
- traefik.http.routers.mattermost.tls.certresolver=anaprod
|
||||
- traefik.http.services.mattermost.loadbalancer.server.port=8065
|
||||
networks:
|
||||
- tnet
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
83
compose/paperless-ngx/compose.yaml
Normal file
83
compose/paperless-ngx/compose.yaml
Normal file
@@ -0,0 +1,83 @@
|
||||
#version: "3.4"
|
||||
services:
|
||||
broker:
|
||||
image: docker.io/library/redis:7
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- redisdata:/data
|
||||
networks:
|
||||
- tnet
|
||||
webserver:
|
||||
image: ghcr.io/paperless-ngx/paperless-ngx:latest
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- broker
|
||||
ports:
|
||||
- 8200:8000
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD
|
||||
- curl
|
||||
- -fs
|
||||
- -S
|
||||
- --max-time
|
||||
- "2"
|
||||
- http://localhost:8000
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
volumes:
|
||||
- data:/usr/src/paperless/data
|
||||
- media:/usr/src/paperless/media
|
||||
- /mnt/documents/paperless/export:/usr/src/paperless/export
|
||||
- /mnt/documents/paperless/consume:/usr/src/paperless/consume
|
||||
# env_file: docker-compose.env
|
||||
environment:
|
||||
PAPERLESS_REDIS: redis://broker:6379
|
||||
PAPERLESS_DBHOST: 10.0.50.60
|
||||
PAPERLESS_DBPORT: 5432
|
||||
PAPERLESS_DBNAME: paperless-ng
|
||||
PAPERLESS_DBUSER: paperless-ng
|
||||
PAPERLESS_DBPASS: paperless-ng
|
||||
# PAPERLESS_MEDIA_ROOT=/data/media
|
||||
PAPERLESS_CONSUMPTION_DIR: /usr/src/paperless/consume
|
||||
PAPERLESS_EXPORT_DIR: /usr/src/paperless/export
|
||||
PAPERLESS_CONSUMER_POLLING: 30
|
||||
# PAPERLESS_DATA_DIR=/config
|
||||
labels:
|
||||
- homepage.group=Media
|
||||
- homepage.name=PaperlessNGX
|
||||
- homepage.icon=mdi-file-cabinet
|
||||
- homepage.description=Document Store (esh)
|
||||
- homepage.href=http://10.0.50.45:8200
|
||||
- homepage.sitemonitor=http://10.0.50.45:8200
|
||||
- homepage.widget.type=paperlessngx
|
||||
- homepage.widget.url=http://10.0.50.45:8200
|
||||
- homepage.widget.key=${API_KEY}
|
||||
networks:
|
||||
- tnet
|
||||
env_file:
|
||||
- .env
|
||||
backup:
|
||||
image: offen/docker-volume-backup:latest
|
||||
restart: always
|
||||
volumes:
|
||||
# volumes to backup.
|
||||
- data:/backup/paperless-data:ro
|
||||
- media:/backup/paperless-media:ro
|
||||
- redisdata:/backup/paperless-redisdata:ro
|
||||
- /mnt/backup/docker/esh-vm-docker/paperless:/archive
|
||||
# can omit below if not stopping service.
|
||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- tnet
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
volumes:
|
||||
data: null
|
||||
media: null
|
||||
redisdata: null
|
||||
40
compose/pgadmin/compose.yaml
Normal file
40
compose/pgadmin/compose.yaml
Normal file
@@ -0,0 +1,40 @@
|
||||
# version: "3.8"
|
||||
services:
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4
|
||||
container_name: pgadmin4_container
|
||||
restart: always
|
||||
ports:
|
||||
- 5050:80
|
||||
environment:
|
||||
PGADMIN_DEFAULT_EMAIL: ${DEFAULT_EMAIL}
|
||||
PGADMIN_DEFAULT_PASSWORD: ${DEFAULT_PASSWORD}
|
||||
volumes:
|
||||
- pgadmin-data:/var/lib/pgadmin
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=PGAdmin
|
||||
- homepage.icon=mdi-database
|
||||
- homepage.description=pgsql Manager (esh)
|
||||
- homepage.href=http://10.0.50.45:5050
|
||||
networks:
|
||||
- tnet
|
||||
env_file:
|
||||
- .env
|
||||
backup:
|
||||
image: offen/docker-volume-backup:latest
|
||||
restart: always
|
||||
volumes:
|
||||
# volumes to backup.
|
||||
- pgadmin-data:/backup/pgadmin-data:ro
|
||||
- /mnt/backup/docker/esh-vm-docker/pgadmin:/archive
|
||||
# can omit below if not stopping service.
|
||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
volumes:
|
||||
pgadmin-data: null
|
||||
@@ -1,23 +0,0 @@
|
||||
# ignored : docker pull restic/rest-server:latest
|
||||
|
||||
#version: "3.3"
|
||||
services:
|
||||
rest-server:
|
||||
ports:
|
||||
- 8000:8000
|
||||
labels:
|
||||
- homepage.group=PFI-ANA
|
||||
- homepage.name=Restic
|
||||
- homepage.icon=mdi-cloud-upload
|
||||
- homepage.description=Restic Backup Server (8000:ana)
|
||||
- homepage.href=http://10.250.50.70:8000
|
||||
volumes:
|
||||
- /mnt/backup/restic:/data
|
||||
container_name: rest_server
|
||||
image: restic/rest-server
|
||||
networks:
|
||||
- tnet
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
@@ -1,27 +0,0 @@
|
||||
version: "3"
|
||||
services:
|
||||
hbbs:
|
||||
container_name: hbbs
|
||||
image: rustdesk/rustdesk-server:latest
|
||||
command: hbbs
|
||||
volumes:
|
||||
- /opt/docker/data/rustdesk:/root
|
||||
network_mode: host
|
||||
depends_on:
|
||||
- hbbr
|
||||
restart: unless-stopped
|
||||
hbbr:
|
||||
container_name: hbbr
|
||||
image: rustdesk/rustdesk-server:latest
|
||||
command: hbbr
|
||||
labels:
|
||||
- homepage.group=PFI-ANA
|
||||
- homepage.name=Rustdesk
|
||||
- homepage.icon=si-rustdesk
|
||||
- homepage.description=Rustdesk Relay Server (ana)
|
||||
- homepage.href=https://rustdesk.phasefinal.com
|
||||
volumes:
|
||||
- /mnt/compose/data/rustdesk:/root
|
||||
network_mode: host
|
||||
restart: unless-stopped
|
||||
networks: {}
|
||||
@@ -1,69 +0,0 @@
|
||||
# version: '2.0'
|
||||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
container_name: seafile-mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=oiuasdf81723 # Requested, set the root's password of MySQL service.
|
||||
- MYSQL_LOG_CONSOLE=true
|
||||
volumes:
|
||||
- seafile_db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store.
|
||||
networks:
|
||||
- tnet
|
||||
memcached:
|
||||
image: memcached:1.6.18
|
||||
container_name: seafile-memcached
|
||||
entrypoint: memcached -m 256
|
||||
networks:
|
||||
- tnet
|
||||
seafile:
|
||||
image: seafileltd/seafile-mc:latest
|
||||
container_name: seafile
|
||||
ports:
|
||||
- 9180:80
|
||||
volumes:
|
||||
- seafile_datastore:/shared # Requested, specifies the path to Seafile data persistent store.
|
||||
environment:
|
||||
- DB_HOST=db
|
||||
- DB_ROOT_PASSWD=${DB_ROOT_PW}
|
||||
- TIME_ZONE=America/Los_Angeles
|
||||
- SEAFILE_ADMIN_EMAIL=${SEAFILE_ADMIN_EMAIL}
|
||||
- SEAFILE_ADMIN_PASSWORD=${SEAFILE_ADMIN_PW}
|
||||
depends_on:
|
||||
- db
|
||||
- memcached
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=SeaFile
|
||||
- homepage.icon=mdi-sync-circle
|
||||
- homepage.description=File Sync Service (ana)
|
||||
- homepage.href=https://seafile.phasefinal.com
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.seafile.tls=true
|
||||
- traefik.http.routers.seafile.rule=Host(`seafile.phasefinal.com`)
|
||||
- traefik.http.routers.seafile.tls.certresolver=anaprod
|
||||
networks:
|
||||
- tnet
|
||||
env_file:
|
||||
- .env
|
||||
backup:
|
||||
image: offen/docker-volume-backup:latest
|
||||
restart: always
|
||||
volumes:
|
||||
# volumes to backup.
|
||||
- seafile_db:/backup/seafile_db:ro
|
||||
- seafile_datastore:/backup/seafile_datastore:ro
|
||||
- /mnt/backup/docker/ana-docker/seafile:/archive
|
||||
# can omit below if not stopping service.
|
||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- tnet
|
||||
volumes:
|
||||
seafile_db: null
|
||||
seafile_datastore: null
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
@@ -11,25 +11,31 @@ services:
|
||||
- --providers.docker=true
|
||||
- --providers.docker.exposedbydefault=false
|
||||
- --entrypoints.web.address=:80
|
||||
environment:
|
||||
- AWS_ACCESS_KEY_ID=${AWS_KEY}
|
||||
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET}
|
||||
- AWS_REGION=${AWS_REGION}
|
||||
- AWS_HOSTED_ZONE_ID=${AWS_ZONEID}
|
||||
ports:
|
||||
- 80:80
|
||||
- 8380:8080
|
||||
- 443:443
|
||||
labels:
|
||||
- homepage.group=PFI-ANA
|
||||
- homepage.name=traefik
|
||||
- homepage.icon=si-traefikproxy
|
||||
- homepage.sitemonitor=http://10.250.50.70:8380
|
||||
- homepage.href=http://10.250.50.70:8380
|
||||
- homepage.widget.type=traefik
|
||||
- homepage.widget.url=http://10.250.50.70:8380
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- /opt/docker/conf/traefik-ana/config:/etc/traefik
|
||||
- /opt/docker/conf/traefik-ana/acme.json:/acme.json
|
||||
- /opt/docker/conf/traefik-esh:/etc/traefik
|
||||
labels:
|
||||
- homepage.group=ESH
|
||||
- homepage.name=traefik
|
||||
- homepage.icon=si-traefikproxy
|
||||
- homepage.sitemonitor=http://10.0.50.45:8380
|
||||
- homepage.href=http://10.0.50.45:8380
|
||||
- homepage.widget.type=traefik
|
||||
- homepage.widget.url=http://10.0.50.45:8380
|
||||
networks:
|
||||
- tnet
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
27
compose/uptimekuma/compose.yaml
Normal file
27
compose/uptimekuma/compose.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
uptime-kuma:
|
||||
restart: always
|
||||
ports:
|
||||
- 3001:3001
|
||||
volumes:
|
||||
- uptime-kuma:/app/data
|
||||
container_name: uptime-kuma
|
||||
image: louislam/uptime-kuma:latest
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=Uptime Kuma
|
||||
- homepage.icon=mdi-arrow-up-bold-circle
|
||||
- homepage.description=Service Monitoring (esh)
|
||||
- homepage.href=http://10.0.50.45:3001
|
||||
- homepage.widget.type=uptimekuma
|
||||
- homepage.widget.url=http://10.0.50.45:3001
|
||||
- homepage.widget.slug=nethealth
|
||||
networks:
|
||||
- tnet
|
||||
volumes:
|
||||
uptime-kuma: {}
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
@@ -1,31 +0,0 @@
|
||||
#version: '3'
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
volumes:
|
||||
- /opt/docker/data/vaultwarden:/data
|
||||
ports:
|
||||
- 9080:80
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- DATABASE_URL=${DB_URL}
|
||||
labels:
|
||||
- homepage.group=Apps
|
||||
- homepage.name=Vaultwarden
|
||||
- homepage.icon=si-bitwarden
|
||||
- homepage.description=Password Vault (ana)
|
||||
- homepage.sitemonitor=https://vaultwarden.phasefinal.com
|
||||
- homepage.href=https://vaultwarden.phasefinal.com
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.vaultwarden.tls=true
|
||||
- traefik.http.routers.vaultwarden.rule=Host(`vaultwarden.phasefinal.com`)
|
||||
- traefik.http.routers.vaultwarden.tls.certresolver=anaprod
|
||||
networks:
|
||||
- tnet
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
tnet:
|
||||
name: traefik-net
|
||||
external: true
|
||||
1
conf/calibre-web/.CALIBRE_RELEASE
Normal file
1
conf/calibre-web/.CALIBRE_RELEASE
Normal file
@@ -0,0 +1 @@
|
||||
v7.16.0
|
||||
1
conf/calibre-web/.key
Normal file
1
conf/calibre-web/.key
Normal file
@@ -0,0 +1 @@
|
||||
4cmGYSmUwGmiiS5AX8RYW0JsWiqOstTJ-rkmBgF8DcI=
|
||||
BIN
conf/calibre-web/app.db
Normal file
BIN
conf/calibre-web/app.db
Normal file
Binary file not shown.
214
conf/calibre-web/calibre-web.log
Normal file
214
conf/calibre-web/calibre-web.log
Normal file
@@ -0,0 +1,214 @@
|
||||
[2025-03-04 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-05 04:00:00 UTC)" (scheduled at 2025-03-04 04:00:00+00:00)
|
||||
[2025-03-04 04:00:00,008] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-05 04:00:00 UTC)" executed successfully
|
||||
[2025-03-04 04:10:00,003] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-05 04:10:00 UTC)" (scheduled at 2025-03-04 04:10:00+00:00)
|
||||
[2025-03-04 04:10:00,004] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-05 04:10:00 UTC)" executed successfully
|
||||
[2025-03-04 05:28:50,223] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b20 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.112', 63284, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-04 06:24:29,799] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b20 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.112', 64824, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-04 09:12:09,537] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7d00 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.104', 57928, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8fvóÎ^²ÍP®H\x12òÏû¬7\x90ZÂn\x0bh¿=\r½tÉ\x9f¨<Ù 3&\x94weh\x0b\x01\x8e\x8c`s¯\x81\r\n'
|
||||
[2025-03-04 09:12:09,813] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7ca0 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.104', 57938, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ÿ\x18þ\x13!£AÅï©N÷\x94&h\x95Vt\x97È/\x1cùÑ\x14ö\x1e·$Aa\x1f\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-04 12:18:34,936] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7d00 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:185.142.236.35', 47694, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03µ\x87¶Ï'; path='|\x9fÿ7\x97]g;ç¥v¥<ñ^\x96³¨\x12x\x15¾\x05@I.\x84\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03µ\x87¶Ï\x1f|\x9fÿ7\x97]g;ç¥v¥<ñ^\x96³¨\x12x\x15¾\x05@I.\x84\x00\x00rÀ0À,À(À$À\x14À\n'
|
||||
[2025-03-04 19:16:42,543] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cae00 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:172.214.115.59', 46218, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-05 02:05:24,381] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cae00 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.70', 60542, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ß&.¯ûÏ1'; path='Z\x87\x8c>ú*äìÕI'; raw='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ß&.¯ûÏ1\tZ\x87\x8c>ú*äìÕI\n'
|
||||
[2025-03-05 02:05:24,660] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cae00 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.70', 60544, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¸\x00{DÔ\x88\x1e7·½\x831µÝ\x81ÜW\xad\x02`=þ\x14aÐɽèñ¡!p\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-05 04:00:00,003] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-06 04:00:00 UTC)" (scheduled at 2025-03-05 04:00:00+00:00)
|
||||
[2025-03-05 04:00:00,014] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-06 04:00:00 UTC)" executed successfully
|
||||
[2025-03-05 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-06 04:10:00 UTC)" (scheduled at 2025-03-05 04:10:00+00:00)
|
||||
[2025-03-05 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-06 04:10:00 UTC)" executed successfully
|
||||
[2025-03-05 06:00:26,437] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5144280 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 65405, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-05 09:30:27,371] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51caf20 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 65288, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-06 01:17:21,852] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7040 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.120', 48675, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03L9©¹qÑ\x1d³×7M¬òyòË¡=Ã\x01>\x00òK\x10\x7f\x0b\x878©?k Þ l\xadûJæÅ\xa0\x03D"õ>ÛÚÍÌ,½2Ä\x8f.aI#Ê\x96L\x83\x1a\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-06 01:23:08,683] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51caf20 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.37', 58541, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ð\x9cì}\x04x6@"Í\x06{\x16/ZsÚ\x942\x13#\x0eò\x83\x13ìÖjºq¨\x17 óøÉÖí&íõ"M ¢xF\x9e\x95\x91\x93ÏÙ£\x1f¯\x0b\x08\x19c½bb®¶\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-06 01:23:09,970] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51caf20 object, fd=126, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.126', 48895, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03÷ù!¡ÏÊþ\x1cÚ»Ý8\x1c^+\x8b1-Ææ\x93lH«s\x8fº+¿zÏÖ î°j\x81Ô±\x13·ïc21@°ÿÀ\x82\x0e\x8d\x1fîB.ÿ;ÿ`JX\x8ft=\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-06 01:25:22,741] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51447c0 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.94', 64602, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03÷YQåÕ\x1f½6Ê\x93Û\x8d¡\x0c¸©]Å¢\x88rGäúGNËL\x95CéM Y\x95#\x06Ã\x02`u¾Wxçó\\µ\n'
|
||||
[2025-03-06 01:25:22,898] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51445e0 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.94', 64616, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x85&óæ\x13\x0fZA\x95\x12T\x94ri¤ô~I¸¡43\x0boúqävÛÛ¸Ó\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-06 01:29:10,357] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51449a0 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.93', 53853, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÈÒ\r¬Ñ%L\x1f\x041ÒÑ!ý\x83³Ë\x1dú}ºÃ\x9e\x01ßn\\¤{5-\x12 2©ïú86\x1e\x06\x1d\x86_#x_Ó\x9a\x1c3\x8dÚ\x1dêÞj¿§Ö/¬²yÍ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-06 02:19:43,723] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51447c0 object, fd=125, family=10, type=1, proto=0>: (from ('::ffff:194.164.107.5', 41482, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03f¢\x10æ?ð!¿\x02¶õ²£§rL;Æ=;Qqß\x84\x19¸\x99\x80Xn¸\n'
|
||||
[2025-03-06 04:00:00,002] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-07 04:00:00 UTC)" (scheduled at 2025-03-06 04:00:00+00:00)
|
||||
[2025-03-06 04:00:00,005] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-07 04:00:00 UTC)" executed successfully
|
||||
[2025-03-06 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-07 04:10:00 UTC)" (scheduled at 2025-03-06 04:10:00+00:00)
|
||||
[2025-03-06 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-07 04:10:00 UTC)" executed successfully
|
||||
[2025-03-06 13:20:27,303] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7280 object, fd=126, family=10, type=1, proto=0>: (from ('::ffff:172.206.147.25', 42298, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-06 18:08:08,680] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5145300 object, fd=126, family=10, type=1, proto=0>: (from ('::ffff:192.155.90.220', 63350, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-03-06 18:08:09,901] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51452a0 object, fd=126, family=10, type=1, proto=0>: (from ('::ffff:192.155.90.220', 63352, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-03-06 18:39:57,427] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7280 object, fd=126, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.175', 61274, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ùn\n'
|
||||
[2025-03-06 18:39:57,783] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5145480 object, fd=126, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.175', 61290, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03k\x83'; path='Vç\x98Òé~\x8c}dÙL<=\x8aA·\x1a'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03k\x83\x85Vç\x98Òé~\x8c}dÙL<=\x8aA·\x1a\n'
|
||||
[2025-03-07 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-08 04:00:00 UTC)" (scheduled at 2025-03-07 04:00:00+00:00)
|
||||
[2025-03-07 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-08 04:00:00 UTC)" executed successfully
|
||||
[2025-03-07 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-08 04:10:00 UTC)" (scheduled at 2025-03-07 04:10:00+00:00)
|
||||
[2025-03-07 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-08 04:10:00 UTC)" executed successfully
|
||||
[2025-03-07 20:44:24,564] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7040 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.106', 60322, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03³cU\x96àÅz§tñ^i\x91\x1b:O©¼v°\x8bté´Ül6rÚ¬É\x8a Ó\xa03\x10_\n'
|
||||
[2025-03-07 20:44:24,723] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7040 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.106', 60338, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ô\x90g\x83£J'; path='ÿ°\x10Ò\x1b4\x87P\x9b¡'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ô\x90g\x83£J\xa0ÿ°\x10Ò\x1b4\x87P\x9b¡\n'
|
||||
[2025-03-07 23:25:39,124] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7040 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:18.225.117.211', 42188, 0, 0)) Invalid HTTP method: '\n'
|
||||
[2025-03-07 23:26:19,094] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7040 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:18.225.117.211', 58794, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x1cqëâ¿1\x10qw\x1anûÙfܪ\x97\x13@\t^\x88+@j¦ºs]Wßú\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-07 23:30:02,319] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51449a0 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:18.225.117.211', 57908, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n'
|
||||
[2025-03-07 23:30:56,774] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7040 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:18.225.117.211', 39502, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x9bs+÷Tø:ÕÇÕÈöhoh>xÉ\x1cõ\x82[\x9fá8ÒLMM«\x8f6\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-08 00:18:32,380] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51ca980 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:51.81.155.132', 57842, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-03-08 00:18:42,533] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3ca0 object, fd=127, family=10, type=1, proto=0>: (from ('::ffff:51.81.155.132', 36472, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03¹\x1cQe\x13ü\x9fÁ#7ãñ\x0eð\x85\x8dÞA \x152ê\x83uÑ\x11oi\\ý5\x1b Y£í²\x90\x18o¢\x15\x95Õad\x12ç½ß¨¬\x8fÞ¡v\x94Âû\x9eð{¨\x910\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n"
|
||||
[2025-03-08 00:18:49,223] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c88e0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:51.81.155.132', 57944, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-03-08 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-09 04:00:00 UTC)" (scheduled at 2025-03-08 04:00:00+00:00)
|
||||
[2025-03-08 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-09 04:00:00 UTC)" executed successfully
|
||||
[2025-03-08 04:02:39,049] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5145360 object, fd=128, family=10, type=1, proto=0>: (from ('::ffff:20.168.7.169', 58178, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-08 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-09 04:10:00 UTC)" (scheduled at 2025-03-08 04:10:00+00:00)
|
||||
[2025-03-08 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-09 04:10:00 UTC)" executed successfully
|
||||
[2025-03-08 06:03:49,071] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510d0c0 object, fd=128, family=10, type=1, proto=0>: (from ('::ffff:180.149.125.166', 53233, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03EÉG º\x193;ñèᨧ\x8aãV\x17W»\x16Td>r¡¿E+j\x07øX\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-08 07:08:56,558] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510d420 object, fd=128, family=10, type=1, proto=0>: (from ('::ffff:173.255.237.49', 22662, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-03-08 16:52:56,993] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510d480 object, fd=128, family=10, type=1, proto=0>: (from ('::ffff:185.147.125.161', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-03-09 04:00:00,002] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-10 04:00:00 UTC)" (scheduled at 2025-03-09 04:00:00+00:00)
|
||||
[2025-03-09 04:00:00,004] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-10 04:00:00 UTC)" executed successfully
|
||||
[2025-03-09 04:06:31,308] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3c40 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.107', 59138, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Aü\x8b\x80Ñø\x16\x07\x83~Ãê\x19\x90Tܤ7¡\x8cÒYÔ(c\x99*}\x1fSªà \x92ÿ &½\x1aÅØ\x00²¸'\x11\x15\x8f\x13pÃÃÂ\x0c\x0c\x1bu\x02\x96\x0cjölt\x81\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-09 04:06:31,585] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5147820 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.107', 59146, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03íÔO¸æG\x19Ðu[\x95³Cn@$Ï1\x81\x84ÎÒ\x11\x83Çaj¢yÊ\x13{\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03íÔO¸æG\x19Ðu[\x95³Cn@$Ï1\x81\x84ÎÒ\x11\x83Çaj¢yÊ\x13{\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-09 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-10 04:10:00 UTC)" (scheduled at 2025-03-09 04:10:00+00:00)
|
||||
[2025-03-09 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-10 04:10:00 UTC)" executed successfully
|
||||
[2025-03-09 08:13:14,250] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3c40 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:152.32.235.96', 34210, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03lÓ_¯\x838·j\x81°¹%äÖ'»&È\x1e\x9b-\x1cA¶\x14m#ÄÜ:¾% ËÆ:\x94¹\x1f\x8d\x93`\x1cIb?³ç\x92^ºiv\x97Z!mÓ\t\x8c\x1c\x83\x9b\n"
|
||||
[2025-03-09 17:24:40,471] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6080 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:79.124.49.10', 65068, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-09 17:43:25,542] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6080 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:4.246.247.19', 53048, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-09 18:41:05,861] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6080 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.86', 37261, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03£NФÑRÀ{3\x9cDd9;Û«\x1a\t¦\x99i\x1bò'j\x12/Ø\x1c\x01Xq \x13£Î¯ÐÑÓ7ì\x85\xa0\x1a\x1f¹\x06\x1dß¿¶$ù¦º\x10\x1e\x12\x88ÃG/\x12:\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-03-09 18:47:07,596] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e7160 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.12', 49305, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03x]ú\x02cé|3\x9drñ\x08¯î*æ\x01\x14òCBþ1\x7f\x03\x07\x9a®*:]\xa0 ú\x18\x00\x02Ü\x9f6\xa0'âÁ*s«AÚÎç\x8f\x8f¢§q+oɱCn$\x9dñ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-03-09 18:47:09,428] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6080 object, fd=130, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.101', 49653, 0, 0)) Invalid http version: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¯\x17ÁÛ\x113òCµ3\x1a½¤?x\x1b\x1d\x1dÛ2ÉÞ¦ì\xad®ò"aߢ² ùã\x87\n'
|
||||
[2025-03-09 18:53:34,030] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3c40 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.89', 51569, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¹kj¼1\x81ñÑ\x19Ã\x0b:î=Ã?#\t¢}\x80ß\x02÷"\x9e=\'¸,úr ö6xFwæK:>\x9b\x84ë¿ì9æò϶RÀoB\x9a¼³\x19ð|æôJ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-10 01:22:56,009] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3c40 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.197', 64076, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03kÇ\x0cu^.\x0ezáR¦·Ò}\x90sæ¨\x93àíy¶ÑÉ!\x9dKÛyY\x02 Gyá^pãn¢n\x8f'<´\x99»!ñ\x1cÈC¢Wr.fqZc}\x97\x19.\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-10 01:22:56,317] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3c40 object, fd=129, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.197', 64086, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Xß²´\x96á\x8d;\x16¯\x0e\x856ÊÅ\x1d3Î`!¨'éSôF/4Ò\x89:\xa0\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-10 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-11 04:00:00 UTC)" (scheduled at 2025-03-10 04:00:00+00:00)
|
||||
[2025-03-10 04:00:00,009] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-11 04:00:00 UTC)" executed successfully
|
||||
[2025-03-10 04:10:00,002] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-11 04:10:00 UTC)" (scheduled at 2025-03-10 04:10:00+00:00)
|
||||
[2025-03-10 04:10:00,004] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-11 04:10:00 UTC)" executed successfully
|
||||
[2025-03-10 19:44:47,368] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51475e0 object, fd=131, family=10, type=1, proto=0>: (from ('::ffff:45.156.128.117', 48355, 0, 0)) Invalid http version: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03\x9b\x88ñûà\x90Ï\x9dÞrôö\x01!\x8f´\x92«\x88z+\x04\x05&\x0f\x01d2\x0c¹K{\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-10 19:45:17,692] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51461a0 object, fd=132, family=10, type=1, proto=0>: (from ('::ffff:45.156.128.118', 51371, 0, 0)) Invalid http version: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03\x7fí\x85\x9c\x05-®\x0861÷ÏÛ\x11\x94Z¢ÖKì\x07\x9e@j--Ì«\x8f\xad\x16F\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-10 19:45:39,392] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5144460 object, fd=131, family=10, type=1, proto=0>: (from ('::ffff:45.156.128.117', 52411, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03\x9fÍ\x9d\x11\x1aÕ¤\n'
|
||||
[2025-03-11 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-12 04:00:00 UTC)" (scheduled at 2025-03-11 04:00:00+00:00)
|
||||
[2025-03-11 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-12 04:00:00 UTC)" executed successfully
|
||||
[2025-03-11 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-12 04:10:00 UTC)" (scheduled at 2025-03-11 04:10:00+00:00)
|
||||
[2025-03-11 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-12 04:10:00 UTC)" executed successfully
|
||||
[2025-03-11 05:00:52,675] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510d7e0 object, fd=132, family=10, type=1, proto=0>: (from ('::ffff:20.84.145.75', 55192, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-11 09:18:01,459] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6080 object, fd=132, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.79', 61186, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03¢<à\x07BcÃU\x1a\x98\x98\x9eW+ü\x1d'\x8ak\x8aÔXç\x99÷\x1f\x994.£P \x19,D\x17\x7fÌ«¶æï\x86§¯ªoým\x85&§;ý5\x02\x10õAyY0ûµ\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-11 09:18:01,644] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6080 object, fd=132, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.79', 61198, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03V\x03ZΦ\x02¦Vè\x12lfÙÂjÛìà\x90JëÍMX\x90N2#J\x1e\x1cô\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-12 04:00:00,006] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-13 04:00:00 UTC)" (scheduled at 2025-03-12 04:00:00+00:00)
|
||||
[2025-03-12 04:00:00,011] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-13 04:00:00 UTC)" executed successfully
|
||||
[2025-03-12 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-13 04:10:00 UTC)" (scheduled at 2025-03-12 04:10:00+00:00)
|
||||
[2025-03-12 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-13 04:10:00 UTC)" executed successfully
|
||||
[2025-03-12 05:59:12,360] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510e1a0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.86', 62048, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03jïY\x88v}\xa0æ\x1dEÂS°û°ÏÕ|&:\x99\x1f0¯\x11¡ÈF\x1bÿ\x03ê \x08¾U\x9c¯ºà\x8d\t*÷äÔâáòÁ@\x82HÅ#«O*G,Ä\x15]Ø\x88\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-12 05:59:12,518] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510e140 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.86', 62064, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x82\x08;\x88\x89\x9e7ÃavÎ\xa0È>¢é\x81Å®\x8df\x1c3v}XI\x19þM2\x98\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-12 14:15:47,017] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51461a0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:71.6.199.23', 57370, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03Ó;9÷\x89\x9d±ÿ£Ê'; path='Â\x8e³\x98]Yo\\_\x8fûõá2¸å>\x1a\x1b\x1a\x87\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03Ó;9÷\x89\x9d±ÿ£Ê\x0bÂ\x8e³\x98]Yo\\_\x8fûõá2¸å>\x1a\x1b\x1a\x87\x00\x00rÀ0À,À(À$À\x14À\n'
|
||||
[2025-03-12 16:48:16,975] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510e1a0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:57.152.78.233', 36454, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-12 17:22:18,673] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510e4a0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:101.198.0.151', 59085, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03òÅ[iUN©n\x10Ï\x98\x17·\x17`ÃÀÅ£(\x92¯»7-4\x88»ª\x9e?è å\x04æGÌ$\x17TÕ\x7f)ß·=Ý\x02ÓBhû2¬ßt\x9e\tz<ÍÉÒ\x03\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-03-12 21:40:16,562] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510ec20 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.69', 62284, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03'\x88¦\x12\x1c`ÞÌ6ÿ}yèÔ9*\x8ewÍ\x88ÃiÙÎ\x9b\x1c\x0fq\x03ï·¿ ÇÅz<\x9d³\x97\x8fêi\\íàôÊ\x99\x0f7ÓcÅ\x141Ñ\x99ÆÒ\x0fýp\x16¹\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-12 21:40:16,723] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510eec0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.69', 62288, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03tMæ×çO'; path='iEô.'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03tMæ×çO\x0biEô.\n'
|
||||
[2025-03-12 22:47:13,426] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510ea40 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.191', 63099, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-13 01:28:32,970] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51461a0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.1', 39315, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ã´Ãòè£rvö9\x9e«f\x9e\x1c3è\x81\x12a&gyïw*hÜã¯Ý\x14 $ÂQ\x18\t$úß\x12O<\x93ý\x1aN\x03<è\x9d¢\x07ÂÌ\x13\x87\t\x0caôâ\x96Ö\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-13 01:36:08,006] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510eec0 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.93', 46829, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ôÊ©K\x02Ï\x08÷Ô¨¯@2óÃf\x13\x182¦ï#P©D/ìÊ\n'
|
||||
[2025-03-13 01:36:08,772] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51461a0 object, fd=134, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.94', 57375, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03©\x0bóãõ¹ÒÏ\x9cjÂ\x0b!<,\x96\x11\x1eìÉã1Íà»Ø-»,Ä\x06ï J\x8fÃAí©\x95\x0b±:ÁckºÖ?x?ñ°\x12\x0e\x10JéÏ\x9f#[Nð\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-13 01:42:10,181] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510ea40 object, fd=133, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.92', 57055, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Ã=\x0fÁ\x1fáì$Ô\x18¡Ï¯ÒÚÿc/1\x1e²9p\x05ý\x1d\x05¼zÑO\x17 `?:ßÁ>\x1d\x1cìc>\x9fé\x9e\x10\x00×÷\x1eú«ô$\x81ÿ>\x9cNÓÁ"\x86\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-13 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-14 04:00:00 UTC)" (scheduled at 2025-03-13 04:00:00+00:00)
|
||||
[2025-03-13 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-14 04:00:00 UTC)" executed successfully
|
||||
[2025-03-13 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-14 04:10:00 UTC)" (scheduled at 2025-03-13 04:10:00+00:00)
|
||||
[2025-03-13 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-14 04:10:00 UTC)" executed successfully
|
||||
[2025-03-13 05:23:09,219] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510f6a0 object, fd=134, family=10, type=1, proto=0>: (from ('::ffff:172.202.118.24', 50428, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-13 11:29:34,147] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5147760 object, fd=134, family=10, type=1, proto=0>: (from ('::ffff:180.163.220.101', 8097, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x01=\x01\x00\x019\x03\x03.¿8\x06öð¦ÿ`\x011¡\xa0»\x0e\x05Gx8¿{\\\x83x^w\x15ë\x87\x1b½T \x08\x82U1\x10Ë.Bä\x8926~\x05ð`e«(\x99ÑÂk9'\x03\x17q\x8f\x05\x90\x94\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n"
|
||||
[2025-03-14 00:23:05,991] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510f880 object, fd=134, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.66', 58514, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03&\x99Ó`\x1fSgq:\x1f(\x18?\x0cÒãtÓ(G\x05"\x98\x9cz\x97]»{u8+ P\x97\x9b\x90\r9\x89æÕ2´\x82_{2×÷$¤+¿nÀ\x94×\x18·&§ÆÓø\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-14 00:23:06,158] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fbe0 object, fd=134, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.66', 58530, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ö©\x86i{\x115\x83xØc5DZ\x04\x9a«\x15îm2Ë»\xa0\x89)õõï±\x94\x17\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-14 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-15 04:00:00 UTC)" (scheduled at 2025-03-14 04:00:00+00:00)
|
||||
[2025-03-14 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-15 04:00:00 UTC)" executed successfully
|
||||
[2025-03-14 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-15 04:10:00 UTC)" (scheduled at 2025-03-14 04:10:00+00:00)
|
||||
[2025-03-14 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-15 04:10:00 UTC)" executed successfully
|
||||
[2025-03-14 04:48:04,927] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510e440 object, fd=135, family=10, type=1, proto=0>: (from ('::ffff:118.26.104.19', 37030, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03¢A¨xµF%%G±\x8fV-4éÐ!Ëg\x9aùpZõ\x7f+ç\x8eA\x89\x07É «ì\x9aÕ\x1a×$ݯ¾÷\x0e\x19\x8b\x8fyh6\x9cÙ\x8bæ\x14\x1e\r\x83\x82wÏô²ñ\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-03-14 05:45:28,012] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d18e20 object, fd=135, family=10, type=1, proto=0>: (from ('::ffff:147.182.214.68', 50580, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-03-14 08:22:15,717] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d18e20 object, fd=135, family=10, type=1, proto=0>: (from ('::ffff:47.237.116.254', 42538, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé<Z¡\x90T·é¥8'O;\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-14 17:07:52,985] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510e440 object, fd=135, family=10, type=1, proto=0>: (from ('::ffff:57.152.78.149', 40204, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-15 03:01:52,090] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510ffa0 object, fd=135, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.97', 60654, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03AÃÙ7¯D\x1e\x9b\x1a\rº\x00\x9c÷Ô\x18#ÁÎ\x89·K°\x82\x16@õOØ\x883/ \x05¢òGÛË\x10\x96zÙ=£ÑÓ\n'
|
||||
[2025-03-15 03:01:52,259] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510f340 object, fd=135, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.97', 60660, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03l¿ìzUY¼\x00=&u\x9e×*\x7fk\x8eèd\x11Ø®\x11ø°û\x02¶Ö<+à\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03l¿ìzUY¼\x00=&u\x9e×*\x7fk\x8eèd\x11Ø®\x11ø°û\x02¶Ö<+à\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-15 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-16 04:00:00 UTC)" (scheduled at 2025-03-15 04:00:00+00:00)
|
||||
[2025-03-15 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-16 04:00:00 UTC)" executed successfully
|
||||
[2025-03-15 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-16 04:10:00 UTC)" (scheduled at 2025-03-15 04:10:00+00:00)
|
||||
[2025-03-15 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-16 04:10:00 UTC)" executed successfully
|
||||
[2025-03-15 09:01:02,129] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=136, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.233', 37852, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03CA²u¿\t\x1eêdd[\x96Ì\x19\x96`£\x9b \x972.Æ0ñTkµ\x98\x0c*N /\x96Q2\x00tÑp\n'
|
||||
[2025-03-15 10:12:36,366] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d19960 object, fd=136, family=10, type=1, proto=0>: (from ('::ffff:42.200.108.110', 35525, 0, 0)) Invalid HTTP method: '\x16\x03\x00\x02\x00\x01\x00\x01ü\x03\x03úØ7¦\x0bjð÷*]\x11\x15\x1b\x10\x12\x10\x1fà=\x7fX\x17\x8a\x9aE[ø°\x8aØ5t A¨õòpÂFS\r+\x0f\x97¹Æ¿\x99[\x9dr\x82»9!1,\x99\x95%ì%ÕK\x00"ºº\x13\x01\x13\x02\x13\x03À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00\n'
|
||||
[2025-03-15 13:32:09,346] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fc40 object, fd=136, family=10, type=1, proto=0>: (from ('::ffff:45.33.80.243', 23706, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-03-15 13:32:09,492] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe20 object, fd=136, family=10, type=1, proto=0>: (from ('::ffff:45.33.80.243', 23720, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-03-16 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-17 04:00:00 UTC)" (scheduled at 2025-03-16 04:00:00+00:00)
|
||||
[2025-03-16 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-17 04:00:00 UTC)" executed successfully
|
||||
[2025-03-16 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-17 04:10:00 UTC)" (scheduled at 2025-03-16 04:10:00+00:00)
|
||||
[2025-03-16 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-17 04:10:00 UTC)" executed successfully
|
||||
[2025-03-16 05:02:06,758] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=139, family=10, type=1, proto=0>: (from ('::ffff:20.169.106.155', 55776, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-16 06:27:53,648] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d189a0 object, fd=139, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.55', 63510, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Xë;^k\r:!\\\x17@\x90Y*oã§EÇüÐÑ~¤\x14\x1af\x1b\x80\x1aÏ} (-²öÈ@\x8f°8½x\x04v`¢³3V-p~«ï`ôÚÔ-\x0f\x1f\x8e'\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-16 06:27:53,926] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=139, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.55', 63514, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03'; path='²a'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\xa0²a\n'
|
||||
[2025-03-17 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-18 04:00:00 UTC)" (scheduled at 2025-03-17 04:00:00+00:00)
|
||||
[2025-03-17 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-18 04:00:00 UTC)" executed successfully
|
||||
[2025-03-17 04:10:00,006] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-18 04:10:00 UTC)" (scheduled at 2025-03-17 04:10:00+00:00)
|
||||
[2025-03-17 04:10:00,007] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-18 04:10:00 UTC)" executed successfully
|
||||
[2025-03-17 05:29:06,185] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.255', 58782, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Øç\x18XÚ <E"ðÁ»tüC-ϯ\x96r°Xk.%\x10 ¨>\x04%L #X»\x83ïfóXÃ\'\x18È\x9e\x91o\x7f\x8eüü©ð\x12ùq¯h\x08W°ãËÊ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-17 05:29:06,350] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.255', 58792, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x90§\x01é¦\t\x16á\x89Sy¹1\x8eèÖpÄÂ\x9e1IZ#ý\x90±w\x1d°\x05Õ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-17 08:03:36,141] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d19de0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:18.189.2.111', 56792, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03íE)è\x7f\xa0\x94¶q\x99c\x83ªí\x93Öàý¥áÖ>l\x94/tãÆ\x90öB\x10\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-17 08:03:37,455] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:18.189.2.111', 56854, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03Í{ÒÖ?§\x87~:æWQî0\x7f7?èZ\x91ÄÄ\x08`pxVE|\x92M5\x00\x00\x1aÀ/À+À\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03Í{ÒÖ?§\x87~:æWQî0\x7f7?èZ\x91ÄÄ\x08`pxVE|\x92M5\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-03-17 08:03:45,987] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a740 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:18.189.2.111', 35186, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n'
|
||||
[2025-03-17 08:04:22,146] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d19de0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:18.189.2.111', 51364, 0, 0)) Invalid HTTP method: '\n'
|
||||
[2025-03-17 08:28:25,576] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.116', 64468, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-17 08:35:33,017] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a740 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.116', 63434, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-17 13:07:54,206] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.116', 64399, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-17 13:17:23,965] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d19de0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:141.98.11.116', 63146, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-03-17 13:58:56,537] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.115', 38409, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÛN\x92\x11ç'\x81\x12\x9eôé\x16¾²\x0eh±Ðɲã2póÿ½ÝC\x0e]2\x1c »ò5\x8b¢ÁÛ.\x0b\x93#Ft'¤áî\x06\x17Ðv\xad!=\x13¤°\x0fÒÀ\x9eg\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-03-17 14:05:07,193] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fe80 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.202', 57975, 0, 0)) Invalid http version: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03#û£\x19\x10k0ÀäÞIÀÅ¿Mñ϶Q\x84ä_ß.ú6\x87=\x96â:1 \x836\x02.n\x1a}D\x9f\x0eÍñ°|þù\x154¼´\x9cw¾÷xË#\x06z¾\x906\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-17 14:05:08,089] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a140 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.201', 49715, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03>^\n'
|
||||
[2025-03-17 14:11:11,061] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a740 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.34', 34779, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x032rñ1Ô-\x03+\x11{5>Ü\n'
|
||||
[2025-03-17 17:02:09,773] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a740 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:128.203.204.195', 47762, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-17 18:22:58,858] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a0e0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.166', 60610, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03^\x8eì\x1bé)ÿÏD|Z\x8368þ{tÁvWcå£'; path=';,\x94DÆR'; raw='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03^\x8eì\x1bé)ÿÏD|Z\x8368þ{tÁvWcå£\xa0;,\x94DÆR\t\n'
|
||||
[2025-03-17 18:22:59,169] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a740 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.166', 60616, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ïÿMyS\x83±"UÐ\x18[\x91T\x82\x06\x14£\x8d6âJ~1é\x954Ê!ï\x96\x07\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ïÿMyS\x83±"UÐ\x18[\x91T\x82\x06\x14£\x8d6âJ~1é\x954Ê!ï\x96\x07\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-03-17 22:38:43,240] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a200 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 54810, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ÔrM\x0b\x9c}X\x18d%¤á\x15|\x08\x86²Z\x98@\x18yY\x1e\x00\x12\x17$¯ÆÖ 1lÔF\x9c\x13Ó©þ¯Î\x04õ\x93ÂÊs«7µ\x1f\x87:ÌÐ\x08l;\x08h¢\x84\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n'
|
||||
[2025-03-17 22:39:14,201] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a200 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 51024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x03\x8b\x1dÆ;És¤tàMì¨*\x08Ua\x1dùÜ:¸Ú¶¶q¦fÂ\x10a\x8f pñ\x01\x8e\x19ßÔ¹¶sð£é_\\Ü6\x165^i+\x9e\x91á*Ûû©÷îÝ\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n'
|
||||
[2025-03-17 22:39:24,772] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a0e0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 55946, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03õÉÛ\x92À©6\x9dz\x966WÍ\x16E\x85¦\x1cgÎß[ûè\x890%i\x94î@¶ j\x06Cµ\x0fú"\x0bIk\x83æI\x00³ÁòUp"\x87L;#5\x1f\x97\x8d\x98\x82Ì?\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n'
|
||||
[2025-03-17 22:40:00,762] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a0e0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 51360, 0, 0)) Invalid HTTP method: "\x12\x01\x00X\x00\x00\x01\x00\x00\x00\x1f\x00\x06\x01\x00%\x00\x01\x02\x00&\x00\x01\x03\x00'\x00\x04\x04\x00+\x00\x01\x05\x00,\x00$ÿ\x11\t\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00ù¸Ë\\\x94k\x89\x1fÙª<\x13KÐ{\x88\x03\\2!$¢\x81\x867Ïb9JF,Æ\x00\x00\x00\x00"
|
||||
[2025-03-17 22:40:05,975] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d19960 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 35852, 0, 0)) Invalid http version: '0)\x02\x01\x00\x04\x06public\xa0\x1c\x02\x04ÿÿÿÿ\x02\x01\x00\x02\x01\x000\x0e0\x0c\x06\x08+\x06\x01\x02\x01\x01\x01\x00\x05\x00'
|
||||
[2025-03-17 22:40:11,160] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1aa40 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 35858, 0, 0)) Expected GET method; Got command='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'; path='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'; raw='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'
|
||||
[2025-03-17 22:40:11,342] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a0e0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 39876, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x8c\x81¤/¶T|\x9eÃgé\x92ü×s\x92tÆ´£CÈü\x9fÙÖ4)â\x95¹y .¤@\t\x18\x85Îè$e¾\x96Ï#\x92ü¦&Qk\x84#7ç·5&ÿ\x93\x1aÂ\xa0\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n'
|
||||
[2025-03-17 22:40:11,736] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a0e0 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 39890, 0, 0)) Invalid http version: 'OPTIONS sip:nm SIP/2.0\r\n'
|
||||
[2025-03-17 22:40:12,130] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a200 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 39896, 0, 0)) Invalid http version: 'OPTIONS rtsp://example.com RTSP/1.0\r\n'
|
||||
[2025-03-17 22:40:22,746] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1aa40 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 39926, 0, 0)) Expected GET method; Got command='\x00'; path='««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'; raw='\x00\x1e««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'
|
||||
[2025-03-17 22:40:27,923] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a980 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 41786, 0, 0)) Invalid http version: '\x80\x00\x00(rþ\x1d\x13\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x86\xa0\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
[2025-03-17 22:40:33,126] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a200 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 41862, 0, 0)) Invalid HTTP method: '\x00í\x00\x00\x01\x00\x00\x00\x01<\x01,\x00\x00\x80\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00³\x00:\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=non-abc-existent-ser-vice-123-a-a-bc-asdf)(CID=(PROGRAM=sqlplus)(HOST=__jdbc__)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=10)))'
|
||||
[2025-03-17 22:40:33,305] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1aa40 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 50190, 0, 0)) Invalid http version: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03%£ÉÂI/C³;½xf\x08ê×´=é\x9f\x8ax\x00N¯Æ=\x82äkrË\x0c Q\x86ÍçBoÄÇio®VÍc"ñEN\x80ËÏ\x1aâD&w)H\x811ý×\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n'
|
||||
[2025-03-17 22:40:38,725] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1aa40 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 50204, 0, 0)) Invalid HTTP method: '\x00\x9c\x00\x01\x1a+<M\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01ÿÿ\x00\x01none\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Microsoft\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
[2025-03-17 22:40:43,903] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a200 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 50212, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00'
|
||||
[2025-03-17 22:40:49,109] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1aa40 object, fd=140, family=10, type=1, proto=0>: (from ('::ffff:45.82.78.104', 48392, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03ÄJq\x1aî?¤#ÙÄ\x87gË+Ê$/7muc¿gKY\x1egO[¨ÍY Ϩø5@\rIä#C@.³\x03¢>êlª}^?\x80\x89º©D/y.$\x98\x00\x1ą̩À+À/À,À0À\tÀ\x13À\n'
|
||||
[2025-03-18 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-19 04:00:00 UTC)" (scheduled at 2025-03-18 04:00:00+00:00)
|
||||
[2025-03-18 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-19 04:00:00 UTC)" executed successfully
|
||||
[2025-03-18 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-19 04:10:00 UTC)" (scheduled at 2025-03-18 04:10:00+00:00)
|
||||
[2025-03-18 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-19 04:10:00 UTC)" executed successfully
|
||||
[2025-03-18 05:14:39,057] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a4a0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:123.58.207.140', 41910, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03`Ó\x80/Þ/)àýðçã\x92Q½Æ§ûx\x8cÌçÛÝp\x1eóhëJ\x03\t \x9d¥\x8fo\x83:\n'
|
||||
[2025-03-18 05:14:39,365] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d18460 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:123.58.207.140', 42074, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n'
|
||||
[2025-03-18 18:45:42,934] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.39', 65028, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\n'
|
||||
[2025-03-18 18:45:43,094] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.39', 65040, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03·`\x9d\x80Ô\x9bf<¶_¶=\xa0×sE\x8a\xad\x08&!î\x9a,Å»æä\x1b\x02\x9d=\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-18 22:09:03,011] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 39024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ç\x07ýB\x81ò\\?UêëËmé\x94YyR÷Ys(\x9c¸¼]N\x1bõ·¸â 1-oÆ0l8Ç\x88Qù\x9dx(Ó\x11\x14,2ÔÑ=\x1d7\x84£RFB¡¡\x05\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:09:33,856] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1b1c0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 51186, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03·Ð\x1aàå\x81`oqVl\x95ÞOJòæ·\x16ø\x13@\r\x9cä\x84\x18\x88æ\x14Y\x1c \x9dãFµ\x01¹\x0c=Lb¿é|\x95\x8eFQòLk\\sPQA\x96Ô¾R`k,\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:09:44,362] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 43162, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03=ÿ%,\x04Û½\x18\x96\x03\x9bBYÈl§C\xad\x03y\x93ª²\x1aa0#ÍÍòLã Åf/\x9fÕºR\\¡{¡*«uqò9\x95ú*OÙ\x95\xa0\\ô\x9a"ý¸Ü%\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:10:20,206] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 45564, 0, 0)) Invalid HTTP method: "\x12\x01\x00X\x00\x00\x01\x00\x00\x00\x1f\x00\x06\x01\x00%\x00\x01\x02\x00&\x00\x01\x03\x00'\x00\x04\x04\x00+\x00\x01\x05\x00,\x00$ÿ\x11\t\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00ù¸Ë\\\x94k\x89\x1fÙª<\x13KÐ{\x88\x03\\2!$¢\x81\x867Ïb9JF,Æ\x00\x00\x00\x00"
|
||||
[2025-03-18 22:10:25,368] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 45576, 0, 0)) Invalid http version: '0)\x02\x01\x00\x04\x06public\xa0\x1c\x02\x04ÿÿÿÿ\x02\x01\x00\x02\x01\x000\x0e0\x0c\x06\x08+\x06\x01\x02\x01\x01\x01\x00\x05\x00'
|
||||
[2025-03-18 22:10:30,547] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 50592, 0, 0)) Expected GET method; Got command='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'; path='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'; raw='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'
|
||||
[2025-03-18 22:10:30,712] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 50608, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ÊñUÎj±\x99\x8aÂ{\x9e¸S\x94ïRì±â\x8f6ÎõÓ¯\x8fòżª$7 ÿc¤Ñ÷ËÒ±½²k5;²©{Ò=äÇ\rt\x19Sïk²§Ô`ýZ\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:10:31,064] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 50622, 0, 0)) Invalid http version: 'OPTIONS sip:nm SIP/2.0\r\n'
|
||||
[2025-03-18 22:10:31,412] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a020 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 50630, 0, 0)) Invalid http version: 'OPTIONS rtsp://example.com RTSP/1.0\r\n'
|
||||
[2025-03-18 22:10:41,912] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 40984, 0, 0)) Expected GET method; Got command='\x00'; path='««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'; raw='\x00\x1e««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'
|
||||
[2025-03-18 22:10:47,095] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 41004, 0, 0)) Invalid http version: '\x80\x00\x00(rþ\x1d\x13\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x86\xa0\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
[2025-03-18 22:10:52,261] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 37138, 0, 0)) Invalid HTTP method: '\x00í\x00\x00\x01\x00\x00\x00\x01<\x01,\x00\x00\x80\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00³\x00:\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=non-abc-existent-ser-vice-123-a-a-bc-asdf)(CID=(PROGRAM=sqlplus)(HOST=__jdbc__)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=10)))'
|
||||
[2025-03-18 22:10:52,453] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 37146, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x07\x82#eÌ"ð\t·7\x15:ë.\x15\x02Sab®\x8cPá0ÑûPC)Ìñ\x03 \x01¾ÿÇ[a?]\x0bÑ|\n'
|
||||
[2025-03-18 22:10:57,793] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 37162, 0, 0)) Invalid HTTP method: '\x00\x9c\x00\x01\x1a+<M\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01ÿÿ\x00\x01none\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Microsoft\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
[2025-03-18 22:11:02,958] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 52646, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00'
|
||||
[2025-03-18 22:11:08,132] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a4a0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 55770, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03õÒ\x8b]\x8f´|ß©\x90sP@R\x1dEê`Pn\x1f¼\x99_à·]\x82\x07çä\x0e #ÿÆ\x90\xa0F$w\x03,*\x91ð\x8b¢îE\x83\x0bh^|Îî\x9a\x08\x9aõ±@\n'
|
||||
[2025-03-18 22:26:53,892] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 42126, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03Óɶ`\x15\x11ÿ7¦¤³\x12;®r]\x04\x91sáéý¿\x9f9?(\x18Ê\x93\x02\x80 «}\x8a\x0c{\x90\x06ÞÝdE8©\x82\x98+s1\xa0\x9eÈ\x84±\x08*\x1f«·áøÊ+\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:27:24,772] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a560 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 37948, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x90\x11j\x94i\x7fs}KR\x03m\n'
|
||||
[2025-03-18 22:27:35,282] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 48444, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03ù\n'
|
||||
[2025-03-18 22:28:11,146] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d18b20 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 59186, 0, 0)) Invalid HTTP method: "\x12\x01\x00X\x00\x00\x01\x00\x00\x00\x1f\x00\x06\x01\x00%\x00\x01\x02\x00&\x00\x01\x03\x00'\x00\x04\x04\x00+\x00\x01\x05\x00,\x00$ÿ\x11\t\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00ù¸Ë\\\x94k\x89\x1fÙª<\x13KÐ{\x88\x03\\2!$¢\x81\x867Ïb9JF,Æ\x00\x00\x00\x00"
|
||||
[2025-03-18 22:28:16,309] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 59196, 0, 0)) Invalid http version: '0)\x02\x01\x00\x04\x06public\xa0\x1c\x02\x04ÿÿÿÿ\x02\x01\x00\x02\x01\x000\x0e0\x0c\x06\x08+\x06\x01\x02\x01\x01\x01\x00\x05\x00'
|
||||
[2025-03-18 22:28:21,478] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 55488, 0, 0)) Expected GET method; Got command='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'; path='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'; raw='\x00\x00\x00fþSMB@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x13333333333333337\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02'
|
||||
[2025-03-18 22:28:21,637] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 55490, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x9dú\x9bzpQ\x8eAÍQª@H\x17sÍ\x88¬÷¶ÓVFÂÕeVýù\x82fR \x89Úö\x85\x8e|fs¿<\x84Z\xadA\x91i\x9aÐHdå½\x9c8ã+«\x91¸iõl\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:28:21,962] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 55506, 0, 0)) Invalid http version: 'OPTIONS sip:nm SIP/2.0\r\n'
|
||||
[2025-03-18 22:28:22,296] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4d1a4a0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 55514, 0, 0)) Invalid http version: 'OPTIONS rtsp://example.com RTSP/1.0\r\n'
|
||||
[2025-03-18 22:28:32,966] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 50024, 0, 0)) Expected GET method; Got command='\x00'; path='««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'; raw='\x00\x1e««\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x07version\x04bind\x00\x00\x10\x00\x03'
|
||||
[2025-03-18 22:28:38,140] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 50050, 0, 0)) Invalid http version: '\x80\x00\x00(rþ\x1d\x13\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x86\xa0\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
[2025-03-18 22:28:43,310] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 43484, 0, 0)) Invalid HTTP method: '\x00í\x00\x00\x01\x00\x00\x00\x01<\x01,\x00\x00\x80\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00³\x00:\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=non-abc-existent-ser-vice-123-a-a-bc-asdf)(CID=(PROGRAM=sqlplus)(HOST=__jdbc__)(USER=)))(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=10)))'
|
||||
[2025-03-18 22:28:43,484] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 43498, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03§1ìùLõ]å\x086\x18\x0bÀ\x11\x9cÛ;ÜÔ\x9e1ÛÁêíC£{¬ÎíU Ô¡×QC\x04\x07\x8b\x95ÙVè¿Ì(5ëE\x9b.üí¤\x1aë\x93h\x1b\x13Òrv\x00\x1aÀ+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-18 22:28:48,828] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 43500, 0, 0)) Invalid HTTP method: '\x00\x9c\x00\x01\x1a+<M\x00\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01ÿÿ\x00\x01none\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Microsoft\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
[2025-03-18 22:28:54,001] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 39844, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00'
|
||||
[2025-03-18 22:28:59,175] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed510fdc0 object, fd=141, family=10, type=1, proto=0>: (from ('::ffff:45.82.79.27', 52186, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03ÒS\x0f¡»\x1b\x0f\x00RÿhMPã!æµÿÎ\x95'; path=')M[\x8cMØ'; raw='\x16\x03\x01\x05º\x01\x00\x05¶\x03\x03ÒS\x0f¡»\x1b\x0f\x00RÿhMPã!æµÿÎ\x95\x1f)M[\x8cMØ\x0c\n'
|
||||
[2025-03-19 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-20 04:00:00 UTC)" (scheduled at 2025-03-19 04:00:00+00:00)
|
||||
[2025-03-19 04:00:00,012] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-20 04:00:00 UTC)" executed successfully
|
||||
[2025-03-19 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-20 04:10:00 UTC)" (scheduled at 2025-03-19 04:10:00+00:00)
|
||||
[2025-03-19 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-20 04:10:00 UTC)" executed successfully
|
||||
322
conf/calibre-web/calibre-web.log.1
Normal file
322
conf/calibre-web/calibre-web.log.1
Normal file
@@ -0,0 +1,322 @@
|
||||
[2025-02-02 10:31:05,460] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3dc0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.21', 59486, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03f\x06\x08f\x7f<A\x19åùÀ\x98|ºÒ\x8c\x83C\x8d\x90¼\x7fôôüd2wrÉÕ; ?\x9dzÍò`{iÖ\x08ÝX\x81\x1aàAîe\x95%(\x02¬\x01RåÒ÷\x0cº\x13]\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-02 10:31:05,627] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3f40 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.21', 59490, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91þ\x0cIïVÄG\x1aékX×\x85Ðü¶\x18)PQ\x87¯ô\x87ÈQ\x0c§\x93ÌÃ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-02 13:39:34,299] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3dc0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:204.76.203.71', 59718, 0, 0)) Invalid HTTP method: '\x04\x01\x01»\x00\x00\x00\x01proxychecker\x00api.ip.pn\x00'
|
||||
[2025-02-02 13:39:34,309] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3ca0 object, fd=90, family=10, type=1, proto=0>: (from ('::ffff:204.76.203.71', 59708, 0, 0)) Invalid HTTP method: '\x05\x01\x00'
|
||||
[2025-02-02 20:14:34,315] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee38e0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.250', 47301, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x1aßþ³2±=è1\x11\x19?#\x8a\x7f6\x17k=Ñ\x8a±÷Ýs(¿Ò\x1fH\x1d\r ¶¸¡Îù©p²¢j!=tÂý=í#Òr¡òNL\x1bá\x89ØBiß?\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-02 20:21:06,602] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3ee0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.146', 50983, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03$Û\x8d\x92ã2qkH¼R\x08`è-\x84+ \x81\x14*ÈÉÐ'-} I6îy \x1ajÁM\x8cØ2,ö1s\x8f\x1f¡9*B4Óq\x00\x86ÎÒ\x03\x9fé\x07\x90,2É\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-02-02 20:21:07,785] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee38e0 object, fd=90, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.152', 47737, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÂÌÕ2ÃÞ\x07\x03Ú\x18æ±\x8eó1Â\x1a\x12\x9b3{<Áû\x8d¾?\x01z!\x10- æá©¿ªCAJ\x84\x02Iî<ë'\xad¬(82×óA\x83\x85{\x93à@\x0f\x1c)\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-02-02 20:27:07,950] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3d60 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:5.196.113.1', 57943, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x820#¢a;z\x03\x8dÇ¿\x80|\x8c\x9e«3ã\x1eÍÝÆ\x93y¦Ï\x9d:s\x993Ù \x0bDWÿÎ2`\x1b\x1b\x95\x92\x11Á\x04\x19\x0fÏ\x1eIk\x14¼ý\r\x1fï\x1f¦Ç\x83$ó\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-02 22:06:40,286] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3ca0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:172.214.115.102', 41846, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-03 01:32:44,245] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3e80 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.213', 64484, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03´\x90O\x9e>(¨ÖÝv8×\x1a\x1dMëRÒ\x0f-[±¸0ýdÙ.AÔ¼« F`\x1b$XTT\xadEð¶\\ÒVvWÚ\x88\x80ÃN\x7f·e\x97{8jE²´\x8b\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-03 01:32:44,558] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3ca0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.213', 64494, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x031¯â\x86\x0cîë\x7f¿\x8cYñ´EX\x01Âc\x01qF×\x81ïfy\x061ì\x19o\x84\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-03 02:10:55,057] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3d60 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-02-03 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-04 04:00:00 UTC)" (scheduled at 2025-02-03 04:00:00+00:00)
|
||||
[2025-02-03 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-04 04:00:00 UTC)" executed successfully
|
||||
[2025-02-03 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-04 04:10:00 UTC)" (scheduled at 2025-02-03 04:10:00+00:00)
|
||||
[2025-02-03 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-04 04:10:00 UTC)" executed successfully
|
||||
[2025-02-03 19:30:51,110] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3e80 object, fd=90, family=10, type=1, proto=0>: (from ('::ffff:92.63.197.55', 22328, 0, 0)) Expected GET method; Got command='\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=hello'; raw='\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie: mstshash=hello\r\n'
|
||||
[2025-02-03 20:52:42,747] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3a60 object, fd=90, family=10, type=1, proto=0>: (from ('::ffff:204.76.203.71', 47442, 0, 0)) Invalid HTTP method: '\x04\x01\x01»\x00\x00\x00\x01proxychecker\x00api.ip.pn\x00'
|
||||
[2025-02-03 20:52:42,748] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3a00 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:204.76.203.71', 47432, 0, 0)) Invalid HTTP method: '\x05\x01\x00'
|
||||
[2025-02-04 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-05 04:00:00 UTC)" (scheduled at 2025-02-04 04:00:00+00:00)
|
||||
[2025-02-04 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-05 04:00:00 UTC)" executed successfully
|
||||
[2025-02-04 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-05 04:10:00 UTC)" (scheduled at 2025-02-04 04:10:00+00:00)
|
||||
[2025-02-04 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-05 04:10:00 UTC)" executed successfully
|
||||
[2025-02-04 09:21:57,633] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b80 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.112', 60032, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x97*\x80ë\x14(/AÅláz\x03BºU\x017Ûû\x82"è\x84§W\rìÆ§«u u7\x19ù\x175fã67\x05¼\x1f\x86:µ\x0c\x05\x16\x9d\x91Zî\tA¥7É4\x1dB\x9d\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-04 09:21:57,899] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2d40 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.112', 60048, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03£\x96qÈ*îSfµ\x8c\x95Ñì-[\xadL^Q\x91ºmIñ§fïùª"ox\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03£\x96qÈ*îSfµ\x8c\x95Ñì-[\xadL^Q\x91ºmIñ§fïùª"ox\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-02-04 10:11:11,058] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b80 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:152.32.245.27', 43772, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03Õä«Þ\x90×Ë=»Ö\x8f\x83\'öïçKD\x99\x01\x98e>e\x8d\x106£LO\xad> ¨\x87dp\x81µà¾ÕÓ\x10\x84ÃÊ2zÇÌÑX~TÏ"\x19§eÙð7E¶\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-04 10:11:11,547] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3e80 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:152.32.245.27', 43880, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n'
|
||||
[2025-02-04 15:35:31,413] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee1360 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:51.8.71.41', 35068, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-04 15:58:00,826] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee1360 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:145.239.154.82', 33174, 0, 0)) Invalid http version: '\x16\x03\x00\x00i\x01\x00\x00e\x03\x03U\x1c§ärandom1random2random3random4\x00\x00\x0c\x00/\x00\n'
|
||||
[2025-02-05 01:28:37,519] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e18a0 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:91.220.163.70', 65061, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-02-05 01:59:26,399] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2d40 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.240', 59254, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x9cÊ~sdʦ×-sÕ¥ãª\x8aç\x93úc'4\x80º<å\rFhBf\rì Rí^\x0bh)~e\x0fb\x90\n"
|
||||
[2025-02-05 01:59:26,705] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3c40 object, fd=91, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.240', 65344, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03G\x86÷¬Ú9\x03m¿o\x0fVÚì{\x85)¸^\x98Ðeê\\H;pvvòox\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-05 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-06 04:00:00 UTC)" (scheduled at 2025-02-05 04:00:00+00:00)
|
||||
[2025-02-05 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-06 04:00:00 UTC)" executed successfully
|
||||
[2025-02-05 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-06 04:10:00 UTC)" (scheduled at 2025-02-05 04:10:00+00:00)
|
||||
[2025-02-05 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-06 04:10:00 UTC)" executed successfully
|
||||
[2025-02-05 13:58:57,280] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e2680 object, fd=92, family=10, type=1, proto=0>: (from ('::ffff:194.164.107.4', 46498, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8bÈ£å)\x98\x052\x11\x91\x8d\x16@\\3X\x83<ª>i4ê3òLåò÷ó\r4 \x15Ìo%8¦\x86>¨ü%~\xad¼\x88QÅjòµOéh\x19yûEí³v\n'
|
||||
[2025-02-06 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-07 04:00:00 UTC)" (scheduled at 2025-02-06 04:00:00+00:00)
|
||||
[2025-02-06 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-07 04:00:00 UTC)" executed successfully
|
||||
[2025-02-06 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-07 04:10:00 UTC)" (scheduled at 2025-02-06 04:10:00+00:00)
|
||||
[2025-02-06 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-07 04:10:00 UTC)" executed successfully
|
||||
[2025-02-06 04:28:34,459] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb75e0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.255', 57600, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x9aæ¶]øÜME\x9bÛÇ\x86\'bÂ\x08Z&|\x03\x939!\x8cÖm\x84§Pö \x9e Í\x80~êF\\~U\x1b\'`Rô$£>Yf\x00\x10\x9a~\x0b\x0c\x8bѱ"\x1fd \x96\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-06 04:28:34,769] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb74c0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.255', 57614, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ªÝ\x92\x82®\x13Óú=\x9e»_\x1a\t\x89Óú\x0eA\x95áËb5ò6ÄEÊ\x81=©\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-06 06:58:39,320] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb74c0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:172.169.108.89', 52262, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-06 12:16:33,517] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7940 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:3.21.43.220', 38638, 0, 0)) Invalid HTTP method: '\n'
|
||||
[2025-02-06 12:21:48,820] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb75e0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:3.21.43.220', 52532, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03È[õ#\x9aHÉñ(ÇlZ\r\x06GØè¼aµc\x95D\x93I\x94(z+Üë\x99\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-06 12:24:10,931] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb74c0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:3.21.43.220', 50190, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03ÿ?+\x986\x19Àø~\x01\x9b\x83\x17Ô,\x98Q0_\x1b\x90<\x02\xad;.G\x80\rÆã3\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-06 12:24:17,637] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb74c0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:3.21.43.220', 55088, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n'
|
||||
[2025-02-06 20:07:12,790] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb75e0 object, fd=93, family=10, type=1, proto=0>: (from ('::ffff:92.255.85.172', 31788, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x00\x93\x01\x00\x00\x8f\x03\x03g¥\x16}ÈCC³\x9f\x91Kñü\\\x9d<è\x89xÛ\x7f\x99\x7f\x07×'\x84R@ì¬Þ\x00\x00&À,À+À0À/À$À#À(À'À\n"
|
||||
[2025-02-07 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-08 04:00:00 UTC)" (scheduled at 2025-02-07 04:00:00+00:00)
|
||||
[2025-02-07 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-08 04:00:00 UTC)" executed successfully
|
||||
[2025-02-07 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-08 04:10:00 UTC)" (scheduled at 2025-02-07 04:10:00+00:00)
|
||||
[2025-02-07 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-08 04:10:00 UTC)" executed successfully
|
||||
[2025-02-07 08:48:53,387] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e3160 object, fd=94, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.94', 61866, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x1a¡\xad)\ti\x93}sËETØe\x06~¤\x1e\x0b\x99¼}òÚPYÓtç\xa0%; ¨È\x06Ãàé\xa0\x15Ì:´ò¤\x0e\x0c\x85\x95c\xa0\n'
|
||||
[2025-02-07 08:48:53,544] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e3100 object, fd=94, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.94', 61870, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03k8ô§\x1bHêÓ\r\x9e\x85Ȩ\x0fR\x05&\x9dµ_NFêßpç\x01o&óþ\x14\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-07 10:12:46,357] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb75e0 object, fd=94, family=10, type=1, proto=0>: (from ('::ffff:165.154.138.33', 52420, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03,\x1d#ë¼PG\x95ÚW\rt|\x8c8\x15\x7fùÍ\x8fÍ}{ô\x0c\x89S\x1f\x12¢I³ \x1a\x1d~2K\x0bÓâ\x86áêÈ\x94\x0e»ý\x16A/\tùGgwq\x9e\x86/ý\x17%\x19\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-02-07 22:17:33,671] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7880 object, fd=94, family=10, type=1, proto=0>: (from ('::ffff:48.216.197.42', 45176, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-07 22:56:45,534] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb6380 object, fd=94, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.169', 61804, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03¢ejq!\x1bR\x03ÉvE\x17[¢sè\x80¶Ú\x01\x02z\x13jP\x82\x87uB'd© eY/Ë«m\x18\x14Á!Ü\x9ad,\x8c£®\x11èÇ\x96^\x14\xad[øÊ\x95<¬v}\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-02-07 22:56:45,846] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb75e0 object, fd=94, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.169', 61818, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x1d»ä\x92µï\x8f\x80ª\x8aSÑ\x87\x12×A6Ó¦ÎD¶(;a,\x03E\x0b1÷"\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-02-08 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-09 04:00:00 UTC)" (scheduled at 2025-02-08 04:00:00+00:00)
|
||||
[2025-02-08 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-09 04:00:00 UTC)" executed successfully
|
||||
[2025-02-08 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-09 04:10:00 UTC)" (scheduled at 2025-02-08 04:10:00+00:00)
|
||||
[2025-02-08 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-09 04:10:00 UTC)" executed successfully
|
||||
[2025-02-08 20:13:33,119] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e3880 object, fd=95, family=10, type=1, proto=0>: (from ('::ffff:57.152.78.170', 47140, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-08 21:01:00,049] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7640 object, fd=95, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.169', 61442, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Û\x90d\x8adB\x87!«¶V\x0bÉùR\x9d®&þöùÙCë\r?Nm\x08ÞÃ\x07 ü«ó}0Òí\x9aeH\x00âÇ%Ê\x1f\xa0!l\x0f^\x1d>¶\x88\x82\x9a)¥%ÿÄ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-08 21:01:00,360] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7640 object, fd=95, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.169', 61456, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x13Æø\x13Ö\x14M¥'; path='\x9c&ºjñFú\'«Å\x84r!Ãn"\xad'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x13Æø\x13Ö\x14M¥\x0c\x9c&ºjñFú\'«Å\x84r!Ãn"\xad\n'
|
||||
[2025-02-09 01:42:44,454] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e3a00 object, fd=95, family=10, type=1, proto=0>: (from ('::ffff:156.229.233.2', 42570, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03æIÔ£ó\x97Çx#þ\x87È"P·ue¯Y\x8bkgÄÝ\x9ffÙè]\x88ÓÍ `\x84\x85ÖJ\x97\x7f\x1e\x82ç#¯f|&P«²gbpÔ\x9b¦\x15Dcï\x97\x97\x9f\x17\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-09 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-10 04:00:00 UTC)" (scheduled at 2025-02-09 04:00:00+00:00)
|
||||
[2025-02-09 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-10 04:00:00 UTC)" executed successfully
|
||||
[2025-02-09 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-10 04:10:00 UTC)" (scheduled at 2025-02-09 04:10:00+00:00)
|
||||
[2025-02-09 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-10 04:10:00 UTC)" executed successfully
|
||||
[2025-02-09 20:07:08,735] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7dc0 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:5.135.238.158', 38179, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x0f¯0×\x12&fÐ\x8b\x86ñª\x03&¨\x90\x815î\x1cº\x96²\x9c\x98öýÑ#\x19â\x93 ÈôL\x81ÛTª\x1e\x19êK±\x83³B\x17ÚÒFÛ\x97»¾ä*Cï@i#ÚK\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-09 20:13:35,344] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e32e0 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:5.196.113.1', 50673, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03aº\t=\x97ö\x02àO3?Æi\x80ûÓ\x11÷äÝÑûC<\x1a&KмÃr\' :\x8b\x17úwqÓð¡M\x8f3\x92\x86\x91×\x9eS2û9©Ç\x1c\x92Þât\t"Ï£\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-09 20:13:35,615] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e32e0 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:5.196.113.4', 50847, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x97_#uºyÆr:ðüá¥\x01è\xad>3Ë¢;\x90Ýÿr,6¹«Ä\x88Ó î1ûâÉj#\x9fÑÑC\x1fc¯!3éB¾ób\x92"ä\x03S@P<ÓCÌ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-09 20:21:06,331] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7dc0 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.85', 40951, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x8bÛº)\x88©\x1f\x1fÂÏg\xa0\x9cßn\x83C\x9b¶\xa0Ãäï;ôä\x93Ñ0Ûr\x06 @\x94ó\x83Í\x02¬<\x9fn\x0chT:\x89òÐÇÊÔ\rO\x02/þ`jð&2¯ý\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-09 23:14:50,839] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b1240 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.45', 57944, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03c\x19\x9aqþ;" Ïhxs6µ5áâ>\x8a\x95J\x7ff\x1aòJØVZ\x14±7 2>\x01Q¦n\x00M\x1aÁfÛ\x173d\x14£zY2*Yüuy³Ò°S7\x9a³\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-09 23:14:50,999] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b13c0 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.45', 57952, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x036Ð\x18\x89áG=2Iþ¼]\x8d\x8e\x8f>Ï\x87Ë\t@b\x15í\x8bDl\xad\x1d¬×\x06\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-10 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-11 04:00:00 UTC)" (scheduled at 2025-02-10 04:00:00+00:00)
|
||||
[2025-02-10 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-11 04:00:00 UTC)" executed successfully
|
||||
[2025-02-10 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-11 04:10:00 UTC)" (scheduled at 2025-02-10 04:10:00+00:00)
|
||||
[2025-02-10 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-11 04:10:00 UTC)" executed successfully
|
||||
[2025-02-10 11:02:50,304] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e3400 object, fd=97, family=10, type=1, proto=0>: (from ('::ffff:40.78.95.27', 56104, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-10 21:59:35,385] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b0100 object, fd=97, family=10, type=1, proto=0>: (from ('::ffff:87.120.127.108', 53552, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00á\x01\x00\x00Ý\x03\x03Ó=\x07ðti\x99¥èçn\x9eØî\x81\x9bª\x8c\x0b\x14Çò4\x83)S(ª¼\x108\x89 \x04±\x9dǶã\x89£\x97\x8d\x95x\x18\x8cÞtG\xa0\x1fÇ\x00ͱ\x18}Ë\x91Il\x99ÿ½\x00$\x13\x03\x13\x01\x13\x02À/À+À0À,̨̩À\tÀ\x13À\n'
|
||||
[2025-02-10 21:59:38,514] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b17e0 object, fd=97, family=10, type=1, proto=0>: (from ('::ffff:87.120.127.108', 53812, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00á\x01\x00\x00Ý\x03\x03ð&#\x8eÏ`\x9fíRs)h,+ßneÄ«\x92\x9au \x1e:SUgg\x08\\Ò 9\x0bòs\x028=´§T0ó<q³\x81±\n'
|
||||
[2025-02-11 00:17:16,123] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b0100 object, fd=97, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.147', 62024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ðý\x9aÝ_JÁ\x14êÏUC\xa0É?R\x95èzã9#PFÛ\x91È«¢Áª© \x9cz×\x13·ÒéËyô¨b]Ý\x9f5Í«\x00xïÐ\x18L ÷5ì\xad\x18\x91G\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-11 00:17:16,435] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b0ee0 object, fd=97, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.147', 62026, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8fä\x16ë\x85×Á³î7CÅó¥\x18\x11ø\x16ä¯ð\x8eb&\x12ËöB@yôw\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-11 02:07:32,059] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b0ee0 object, fd=97, family=10, type=1, proto=0>: (from ('::ffff:185.147.125.16', 64044, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-02-11 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-12 04:00:00 UTC)" (scheduled at 2025-02-11 04:00:00+00:00)
|
||||
[2025-02-11 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-12 04:00:00 UTC)" executed successfully
|
||||
[2025-02-11 04:10:00,004] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-12 04:10:00 UTC)" (scheduled at 2025-02-11 04:10:00+00:00)
|
||||
[2025-02-11 04:10:00,005] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-12 04:10:00 UTC)" executed successfully
|
||||
[2025-02-11 04:38:22,786] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b01c0 object, fd=98, family=10, type=1, proto=0>: (from ('::ffff:15.204.47.3', 35464, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-02-11 04:38:32,952] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b2500 object, fd=98, family=10, type=1, proto=0>: (from ('::ffff:15.204.47.3', 40890, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03X\x9c\x82\x98±[Ä\x04XN\xa0\n'
|
||||
[2025-02-11 04:38:40,343] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b1840 object, fd=100, family=10, type=1, proto=0>: (from ('::ffff:15.204.47.3', 35516, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-02-11 05:38:02,827] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2c80 object, fd=98, family=10, type=1, proto=0>: (from ('::ffff:172.104.11.34', 5558, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-02-11 05:38:03,169] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2da0 object, fd=98, family=10, type=1, proto=0>: (from ('::ffff:172.104.11.34', 5568, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-02-11 08:24:54,938] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2c80 object, fd=98, family=10, type=1, proto=0>: (from ('::ffff:185.147.125.16', 63949, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-02-11 17:34:29,838] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e2560 object, fd=98, family=10, type=1, proto=0>: (from ('::ffff:165.154.164.142', 44034, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03(\x88y\x98+e¼\x07\x9fA0ô\x02®U\x9c¥/\x17\x84Æ]\x90ÉÏ\tÉÆW\x9a> :ª\x16\x00P¿\x8e\x80\x04Êúµç~ÓödVK\x0f¤ÑzªÈhZÆ7\x95\x8eö\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-02-12 00:49:32,338] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3ac0 object, fd=99, family=10, type=1, proto=0>: (from ('::ffff:52.249.38.230', 51290, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-12 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-13 04:00:00 UTC)" (scheduled at 2025-02-12 04:00:00+00:00)
|
||||
[2025-02-12 04:00:00,018] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-13 04:00:00 UTC)" executed successfully
|
||||
[2025-02-12 04:05:03,348] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2c20 object, fd=100, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.222', 59432, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03׸hO\x11\x1eY®1¯ªg,BÞ\x0fìh\x0e¡üº\x8cæ÷\x1d¤\x82¸\n'
|
||||
[2025-02-12 04:05:03,660] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2c20 object, fd=100, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.222', 59436, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8d\x9d\x1b\x0eÓCnÒ»¹þPK0¤5äÙTÆ\x95\x12\x93Æ×\x12\x8a&öë$}\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8d\x9d\x1b\x0eÓCnÒ»¹þPK0¤5äÙTÆ\x95\x12\x93Æ×\x12\x8a&öë$}\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-12 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-13 04:10:00 UTC)" (scheduled at 2025-02-12 04:10:00+00:00)
|
||||
[2025-02-12 04:10:00,003] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-13 04:10:00 UTC)" executed successfully
|
||||
[2025-02-13 01:40:34,613] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee38e0 object, fd=100, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.196', 44921, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Æ\x89É9ý®\x0cx§[W¹ÒxéA\x02\x8dúI\x01¾\x12yúå¦(\x8d+pØ ¿= ^®O\x162\x01\x8b1-4m\x01¯åÐô\x81\x80.\x0c\x1b\x03\x08\x9a3¦B\x9f\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-13 01:47:09,826] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee38e0 object, fd=100, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.248', 45097, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÆæÕ4°\x8fz Ù\x164¬Ã½Ñ»Ç\rûe÷Êü\x87\x0fhì'\x1em\x82\x07 æx>ж\x17ó\x009<g?7\x0eÞL°Ó\x86<ö\x90f\x1c®8÷I7ºá\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-02-13 01:47:12,320] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b2e00 object, fd=101, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.246', 60031, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ò\n'
|
||||
[2025-02-13 01:53:09,546] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b1fc0 object, fd=100, family=10, type=1, proto=0>: (from ('::ffff:79.137.7.75', 56523, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x07ÓÖ\x12\x1cð¡30í£d\x9c[\x82ø\x00ë\x13\x89rq+o£·|<A1½þ }½ÓεK¼`(å³&´.¼߮£;(\x12(ó?\x1c×üÌ\x1bÏ:\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-13 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-14 04:00:00 UTC)" (scheduled at 2025-02-13 04:00:00+00:00)
|
||||
[2025-02-13 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-14 04:00:00 UTC)" executed successfully
|
||||
[2025-02-13 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-14 04:10:00 UTC)" (scheduled at 2025-02-13 04:10:00+00:00)
|
||||
[2025-02-13 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-14 04:10:00 UTC)" executed successfully
|
||||
[2025-02-13 10:26:54,424] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b38e0 object, fd=101, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.176', 62910, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ë?_¸2PæÇ\x80\x07(Ä16\x81\x9f\t\x17Í!}oà\x9d°ÊÕ\x84Âã\x92m \x9b{V·\x84ØòÏñ]ë\x16ßÅ3°}\x0c¢|÷s}\x96\r\\Z]\x82Óüi\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-13 10:26:54,784] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=101, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.176', 62918, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¶÷(þ9óí\x82hÌ-\x8b2\x8dwÝçûÚß\x13øL\x19\x14Ë?\x19\x0eØå»\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¶÷(þ9óí\x82hÌ-\x8b2\x8dwÝçûÚß\x13øL\x19\x14Ë?\x19\x0eØå»\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-13 13:48:28,955] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=101, family=10, type=1, proto=0>: (from ('::ffff:5.101.0.66', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-02-13 16:26:57,642] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee17e0 object, fd=101, family=10, type=1, proto=0>: (from ('::ffff:13.64.51.72', 49920, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-14 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-15 04:00:00 UTC)" (scheduled at 2025-02-14 04:00:00+00:00)
|
||||
[2025-02-14 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-15 04:00:00 UTC)" executed successfully
|
||||
[2025-02-14 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-15 04:10:00 UTC)" (scheduled at 2025-02-14 04:10:00+00:00)
|
||||
[2025-02-14 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-15 04:10:00 UTC)" executed successfully
|
||||
[2025-02-14 06:14:11,101] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:172.105.128.11', 63532, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-02-14 06:14:13,121] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:172.105.128.11', 63546, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\n'
|
||||
[2025-02-14 07:52:24,678] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.222', 64024, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03y´¦\x05`ÇP\x98s\x0f\x92þ}uά\x82\x8b\x83|\x91|c¥\x85hË\x87ùpbÍ f%Ã\x9dh×ÌO\x94M\x9dË]kªx\x98\x9fùÅÓïVH\x84+!\x1c³\x98\x18\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-14 07:52:25,035] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52301c0 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.222', 64032, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03DKÆ\x99DÁàJ¥8\x92$ú\x8f\tNÃK½©X¼\x06²oÇê½Öìt¶\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-14 23:34:44,725] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:71.6.199.23', 42750, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03`ø\x15y\x8c\x13\x1aáûÂ]\x16\x9cÜõ\x19\x99»\x13ØÊK_¡'; path=')·à_?\x04\x81\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03`ø\x15y\x8c\x13\x1aáûÂ]\x16\x9cÜõ\x19\x99»\x13ØÊK_¡\t)·à_?\x04\x81\x00\x00rÀ0À,À(À$À\x14À\n'
|
||||
[2025-02-15 01:57:43,711] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5230fa0 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:51.81.155.128', 52336, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-02-15 01:58:01,017] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=112, family=10, type=1, proto=0>: (from ('::ffff:51.81.155.128', 52436, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-02-15 02:35:58,812] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b1fc0 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.176', 58216, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8ct\x08B*M\\Ø\x1eÔ3\x9e\x9b\x0f\x1dk1\x8eËWÐFr \x9c°óh\x18~\x9aº öø\x86Ð}\x93mÚæ+\x8b;¡^\tj\x8c´\x1dk¢kÈ\x86P«%r\x96qj\x19\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-15 02:35:59,170] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b2740 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.176', 58224, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ó\x15\x06{\x9f\x87*gýÞ9ö\x94\x8ar¹\x9eb\x1cú\x0e¦ÓR_\r£F\x80Üt\x7f\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-15 02:49:06,191] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b1fc0 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:18.188.75.250', 33174, 0, 0)) Invalid http version: "\x16\x03\x01\x00{\x01\x00\x00w\x03\x03ì\x88\x14EäÛ\x05üæ\x8c\x1c\x03¯S®¤i¯\x91'´\\ö«dó\x14E<eÞ\x87\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n"
|
||||
[2025-02-15 02:49:11,139] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e37c0 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:18.188.75.250', 57176, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x17:u-C\n'
|
||||
[2025-02-15 02:49:27,969] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:18.188.75.250', 57804, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n'
|
||||
[2025-02-15 02:50:55,589] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0b20 object, fd=102, family=10, type=1, proto=0>: (from ('::ffff:18.188.75.250', 39082, 0, 0)) Invalid HTTP method: '\n'
|
||||
[2025-02-15 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-16 04:00:00 UTC)" (scheduled at 2025-02-15 04:00:00+00:00)
|
||||
[2025-02-15 04:00:00,012] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-16 04:00:00 UTC)" executed successfully
|
||||
[2025-02-15 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-16 04:10:00 UTC)" (scheduled at 2025-02-15 04:10:00+00:00)
|
||||
[2025-02-15 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-16 04:10:00 UTC)" executed successfully
|
||||
[2025-02-15 09:39:27,607] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3a00 object, fd=103, family=10, type=1, proto=0>: (from ('::ffff:8.219.8.175', 40838, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé<Z¡\x90T·é¥8'O;\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-02-15 11:19:37,828] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231cc0 object, fd=103, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.234', 37290, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8f\x89ÒÂ\x86:ÒkÞsd\x11z½¾\x10÷ÅîëÒö\x98O°Õ½$ Í9¤ \xa0è\x90iuø0þ\\¼@\x1c\x0bî\x94LÀÑ\x07VD«+\x89O:\x0b5(ËHe\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-02-15 11:29:58,532] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5232920 object, fd=103, family=10, type=1, proto=0>: (from ('::ffff:172.168.152.7', 34630, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-16 02:16:25,300] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532dfc0 object, fd=103, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.246', 59124, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03]Eú\x90\x99\x81\x0fÑËP\x87\x1eõ2¾(«\x89Nb/\x16\x9bÖA\x9aÀ\x11EÏæL \x80nTÓLs«\x1a\n'
|
||||
[2025-02-16 02:16:25,659] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532dfc0 object, fd=103, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.246', 59136, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ª%\x93r\x01ðÞÂúª÷>ùɲ\x9a\x9b\x19yBX\x1b\x8d\x9e\x97EMxp\x18\x12\x9d\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ª%\x93r\x01ðÞÂúª÷>ùɲ\x9a\x9b\x19yBX\x1b\x8d\x9e\x97EMxp\x18\x12\x9d\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-16 02:31:28,422] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532dfc0 object, fd=103, family=10, type=1, proto=0>: (from ('::ffff:196.251.89.107', 46380, 0, 0)) Invalid HTTP method: '\x04\x01\x01»Ô/ú\x0e\x00'
|
||||
[2025-02-16 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-17 04:00:00 UTC)" (scheduled at 2025-02-16 04:00:00+00:00)
|
||||
[2025-02-16 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-17 04:00:00 UTC)" executed successfully
|
||||
[2025-02-16 04:10:00,002] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-17 04:10:00 UTC)" (scheduled at 2025-02-16 04:10:00+00:00)
|
||||
[2025-02-16 04:10:00,003] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-17 04:10:00 UTC)" executed successfully
|
||||
[2025-02-16 08:09:44,214] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321840 object, fd=104, family=10, type=1, proto=0>: (from ('::ffff:172.202.250.243', 50190, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-16 12:24:14,440] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b2740 object, fd=104, family=10, type=1, proto=0>: (from ('::ffff:196.251.89.107', 47254, 0, 0)) Invalid HTTP method: '\x05\x01\x00'
|
||||
[2025-02-16 18:52:22,683] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3dc0 object, fd=104, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.150', 40063, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\tè\xa0`\x12\x15CrÝ Ø½Ú6f\x88õG/\x8bN\x7f/í5îï\x8b'Þ2x æ2Ýÿ\x08\x84\x10rÓ\x1f\x08~ö\x8aÊs\x13Û'32\x85.\x1dÜâ\x811\x10\x9cÞ\x08\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-02-16 18:59:06,968] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3dc0 object, fd=104, family=10, type=1, proto=0>: (from ('::ffff:79.137.7.68', 45715, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x06ÆÜð\x10m\x9b«ÏâÈq\xa0-\x7f~Ã\x9dÙ\x80\x12ü\x1d!k\\\x02\x81\x19ÞÑs ã\n'
|
||||
[2025-02-16 18:59:08,522] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3dc0 object, fd=105, family=10, type=1, proto=0>: (from ('::ffff:79.137.7.77', 56701, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03=2\x12ë\x18\x1aÓݼBr|¸?z\x1d-¢ñó2;¯ñó'WIcc!¿ =\x83/ßäÝ\x8c:ôF\x8b½ò\x1a±?õß³ð¢'Í3ÈÖ¶2¹ºG$\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-02-16 19:05:33,163] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321840 object, fd=104, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.249', 57899, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03òpàÔ\x87\x901\x10Næ\x06t\x177J$ëjRû/\x03"\x10\x8d=î\x7fù ó 2=Ì\x19=\'8\\zò\x0büj0Ã-Æû½\x7f\x9d\x13\x17Å\x1fÚÝ\x1dÃÛÛ\t\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-17 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-18 04:00:00 UTC)" (scheduled at 2025-02-17 04:00:00+00:00)
|
||||
[2025-02-17 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-18 04:00:00 UTC)" executed successfully
|
||||
[2025-02-17 04:10:00,002] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-18 04:10:00 UTC)" (scheduled at 2025-02-17 04:10:00+00:00)
|
||||
[2025-02-17 04:10:00,003] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-18 04:10:00 UTC)" executed successfully
|
||||
[2025-02-17 06:48:08,511] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5233940 object, fd=106, family=10, type=1, proto=0>: (from ('::ffff:118.26.104.179', 58212, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03â\x94\x8dÍw\x96\x1fÝÒö¡\x932ò\x08ÍGs\x11>ëD\x19\x01\x7fQE9-Û\x8aí \x1b/ê-\x8fz¬u\x13\x97\x16¬@;¨\x0b3P\x96vÊ$\x1a\x0fÌ\x8fÒ\x03bý\x8cÖ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-17 06:48:08,904] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231d20 object, fd=106, family=10, type=1, proto=0>: (from ('::ffff:118.26.104.179', 58254, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n'
|
||||
[2025-02-17 08:13:20,217] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3ca0 object, fd=106, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.81', 60490, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x959ò¶\x8dñ9m\x14ÅkípîT¬¨\x8bó]\x1b\x13\x9b\x96M\x93FàÝÔ\x9cÊ \x18\x0c\x98æx,>S\x16$\x81\x89Ù\x99\x17,ùÝê\x04\t\x86YM\x93Ù¹xÞ\x04ãß\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-17 08:13:20,373] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52e26e0 object, fd=106, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.81', 60496, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x00\x80A\x87\x93Àù+Æ\x83Û\x98\x8eªÌò9Ñ\n'
|
||||
[2025-02-18 00:01:49,415] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b2740 object, fd=106, family=10, type=1, proto=0>: (from ('::ffff:185.142.236.34', 43446, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03r`¾Ô¬W\x8eìt,'; path="¦\x10-à\x9bÚ'0e®ÕÖ~\x9eÔ\x06Ã"; raw="\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03r`¾Ô¬W\x8eìt,\x1d¦\x10-à\x9bÚ'0e®ÕÖ~\x9eÔ\x06Ã\n"
|
||||
[2025-02-18 02:26:45,593] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b2740 object, fd=106, family=10, type=1, proto=0>: (from ('::ffff:52.228.167.157', 51818, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-18 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-19 04:00:00 UTC)" (scheduled at 2025-02-18 04:00:00+00:00)
|
||||
[2025-02-18 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-19 04:00:00 UTC)" executed successfully
|
||||
[2025-02-18 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-19 04:10:00 UTC)" (scheduled at 2025-02-18 04:10:00+00:00)
|
||||
[2025-02-18 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-19 04:10:00 UTC)" executed successfully
|
||||
[2025-02-18 10:24:24,310] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5180 object, fd=107, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.15', 57558, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x17MR»\x14CuTR>ê\x94d\x16\x9dó\x05ê\x92¹\x83ÁC\x87ØÚ¢\x9fb¯\x82§ f}íd\x00\x8eò\x075¹é\x1fV\x98¯ø\x95T;ñÆkaBáü\x94\x85]×-B\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-18 10:24:24,608] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5240 object, fd=107, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.15', 57570, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03óõ<\x8c´\x90¬®Àú\x8fl\x06tÜ÷\x89n\x1a\x98ð2\x12@\x8fÂ^"õÆ\x0bà\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-02-18 20:31:17,265] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5240 object, fd=107, family=10, type=1, proto=0>: (from ('::ffff:138.197.221.128', 57728, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-02-19 04:00:00,008] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-20 04:00:00 UTC)" (scheduled at 2025-02-19 04:00:00+00:00)
|
||||
[2025-02-19 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-20 04:00:00 UTC)" executed successfully
|
||||
[2025-02-19 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-20 04:10:00 UTC)" (scheduled at 2025-02-19 04:10:00+00:00)
|
||||
[2025-02-19 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-20 04:10:00 UTC)" executed successfully
|
||||
[2025-02-19 07:51:31,523] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3640 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.182', 64042, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ð?G|\x89A`·}Ô\x8a\x86¡ïÎnw¤ZgÛû,\x1dè#ÇqPN\x82\xad \x02p\x90s ÒÄâîªF½XV\x19Z7ìI¿\x1d«J\\\x12XºKÎM5û\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-19 07:51:31,836] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3640 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.182', 64052, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x034×)L+m\x8c\x13\x95«â;ýÖ\x0b\x8aË\r\x85s\x86LÈD\r\x87ûn(zä¨\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-19 11:34:36,302] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3640 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:182.75.158.46', 61001, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x033h\x95¿'; path='.ÑõyQ*\x04ï\x9fypø»\x80j_ðÂ'; raw='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x033h\x95¿\x1e.ÑõyQ*\x04ï\x9fypø»\x80j_ðÂ\n'
|
||||
[2025-02-19 22:24:58,502] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3dc0 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:45.156.130.46', 35270, 0, 0)) Invalid http version: '\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03eoªqN8\x84å@×GdÁ\x1dñrh\x05áu\x9bã¾úùj¨\x03\x81Å\x02\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-20 01:18:49,346] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3640 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.7', 58217, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03MDó\x93\x1f¤!\x8bl^8³\x8aÏMÑü\x9b. Ç1â\x03rs.\x8câ#ðñ 29-w;_½\x97'\x12#\x90\x10{Í$ïxa×\x13¬c\x13Û¿jÄ\th8{\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-02-20 01:25:07,366] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231120 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.207', 41765, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03?½¹\x8e1m¶\x9bº0)H3?âÕ|\xa0a\x19èn»!\x14?\x1bÞø\x9dM" á\x82¤\x88\x03Ú3Â\x0e)(ÎnÊ\x1fýãÍ\x9bþï\x9b|\x02Ç2»«¶Þ$0\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-20 01:25:09,241] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b37c0 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.204', 55175, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03×/¥¡ì=@\x81ö7N;¾Ð³q}Á|9Ý Hñ%V\x0e®4Ó\x81ª -çé¨:¬¯\x1d\x85\x94Â\x10r\x12}3OÙÍ>/\x1b¿=\x82«ï\x8dCÖ2¯\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-20 01:31:10,568] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e63e0 object, fd=108, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.29', 38011, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Öû\x82,³\xad,Áâ:jÞ&\x0fº¨22I\x1d\x0f»\x10M}+Ù\x0b/«sZ ¯£\x912\x12!\x8a\x91\x01æ*\x8e\x07-?8Ý\x99³bæ¢@\x9fb2\x06ª¢\x08 ª\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-20 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-21 04:00:00 UTC)" (scheduled at 2025-02-20 04:00:00+00:00)
|
||||
[2025-02-20 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-21 04:00:00 UTC)" executed successfully
|
||||
[2025-02-20 04:10:00,003] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-21 04:10:00 UTC)" (scheduled at 2025-02-20 04:10:00+00:00)
|
||||
[2025-02-20 04:10:00,004] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-21 04:10:00 UTC)" executed successfully
|
||||
[2025-02-20 08:04:09,592] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6e00 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.203', 63162, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x00\x12;\x81\xa0xâߣµ2&ù!é}î\x102\x18Î\x96\x17í\x01Å(\x16Ça'\x9b sS¢o>\x1c0\x7f°é\x90¦\x05\x82ÕýĪo®MÆFR£õÍëº\x00à\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-02-20 08:04:09,953] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5300 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.203', 63166, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03LÉoU~·\x98\x98\x90¡\x855\\ãÿZ_r¢wÅ£\x9bsʬ3\x0cåâE)\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-20 10:53:07,676] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5300 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-02-20 13:12:52,107] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3a00 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:172.245.40.162', 60948, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03üÖm¶4ä\x89T/\x93Ö§Àß\x98ýÛ7\x0c×1jVâ;\x85\x1c\x92ë9Z\x97 ï3\x15x[/¦\x01IºU\x9b\x96É"\x18kö\x98õÛ\x03Í^ZÎpªÈ\x0bT^\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-20 16:18:54,239] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3640 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:40.78.88.229', 57182, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-20 16:29:47,375] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3a00 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:123.58.207.155', 56124, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03\x9c\tlW¡\r¨\x8bÀw\x99\x1f\x99\x8cÔ¤vï\x00O\x07;(»Ù&¿\x99W\x04\x91\x85 \n'
|
||||
[2025-02-20 23:58:21,859] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53db700 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.72', 62384, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ï\tð\x9dg?#|h$OYuä.ø¦¹S¢º\x88zh\x96±ôÝP\x1câ\x10 ç\x8c\x8eÇ¿\x19\x9a²è̦\x7fY]Ã:¦ìþHnÇê¾\x15Ã2L\x07ë\r#\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-20 23:58:22,017] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53db700 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.72', 62398, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8cë\x1cè0½\x87\x91/\x8aÔë¾V[\\ùjl\x81M%y\x1a\x80õèºì]¥æ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-21 01:29:27,259] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da020 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:101.198.0.157', 44867, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03\x85B@Îa\x1fMG\x10C¹ì\x91\x99AGÄÆp:¢\x84#i·2ÑÆ=\x87î\x9e \x0eS¯5B\x06ØNݪúÏÖú\x15(ôï\x10»S8Õ\x16v]\x1b:\x9b\x86àp\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-02-21 02:59:55,360] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53db700 object, fd=109, family=10, type=1, proto=0>: (from ('::ffff:101.198.0.180', 32240, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03J=WJ¸¸\x96à\x9cÄ«\x8f¢øÉ«Ð!r\tÁ\x83~B½èné=\rÎd °\x1c\x07`´\x0b²Ã6Ë8T\x83ï\x87I\x00c\x1dý«ÀÏ A\rËKÛj)\x1b\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-02-21 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-22 04:00:00 UTC)" (scheduled at 2025-02-21 04:00:00+00:00)
|
||||
[2025-02-21 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-22 04:00:00 UTC)" executed successfully
|
||||
[2025-02-21 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-22 04:10:00 UTC)" (scheduled at 2025-02-21 04:10:00+00:00)
|
||||
[2025-02-21 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-22 04:10:00 UTC)" executed successfully
|
||||
[2025-02-21 16:35:13,690] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5ea0 object, fd=110, family=10, type=1, proto=0>: (from ('::ffff:5.101.0.66', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-02-21 21:26:49,506] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5300 object, fd=110, family=10, type=1, proto=0>: (from ('::ffff:194.164.107.6', 49046, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Wçp¹ôT÷\x07Ó¢ïλ\x04gÊ»\x1bVȪ \x88\x84\x1fßõÒ`¾:¶ ÿè\x9c\x9d\x01¨\x07ê\x8eJzwåÔ(&\x9a\x8aNØØFh\x00\x9d`c\x92A6\x9eú\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-02-22 02:30:40,854] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e74c0 object, fd=110, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.230', 47500, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03#æÃ\x0ep\x016NÏChçOÎÂ\xa0\x01MÎj`\x9b\x80dÖ\x96\x8b\x8c\x05æ\x92³ UÄ]\x17nARDï)Õ\x82\x83)\x06s±Wp\x82Fk\\<³|\x95áê\x10%B\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-02-22 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-23 04:00:00 UTC)" (scheduled at 2025-02-22 04:00:00+00:00)
|
||||
[2025-02-22 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-23 04:00:00 UTC)" executed successfully
|
||||
[2025-02-22 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-23 04:10:00 UTC)" (scheduled at 2025-02-22 04:10:00+00:00)
|
||||
[2025-02-22 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-23 04:10:00 UTC)" executed successfully
|
||||
[2025-02-22 05:22:14,542] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231300 object, fd=111, family=10, type=1, proto=0>: (from ('::ffff:130.204.252.234', 35493, 0, 0)) Invalid HTTP method: '\x16\x03\x00\x02\x00\x01\x00\x01ü\x03\x03úØ7¦\x0bjð÷*]\x11\x15\x1b\x10\x12\x10\x1fà=\x7fX\x17\x8a\x9aE[ø°\x8aØ5t A¨õòpÂFS\r+\x0f\x97¹Æ¿\x99[\x9dr\x82»9!1,\x99\x95%ì%ÕK\x00"ºº\x13\x01\x13\x02\x13\x03À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00\n'
|
||||
[2025-02-22 09:14:18,832] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231300 object, fd=111, family=10, type=1, proto=0>: (from ('::ffff:172.245.40.162', 33224, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03\x1d\x15\x14võàé\x04%ÂÚ\x0câ\x96\x1aÆô¾\x8dIÒQSX>\x80\x19ó>®ä\xa0 O|¾F(+\x982ý¼ôÊ·^^{\x8d`Ï\x15â=m2ÿ@\x88ø\x99áaä\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-22 10:33:56,224] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b37c0 object, fd=111, family=10, type=1, proto=0>: (from ('::ffff:172.206.147.171', 41528, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-22 10:45:41,981] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e73a0 object, fd=112, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.239', 63210, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8dÜ?×¶H0È\x98ñü'; path='<Ô}'; raw='\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8dÜ?×¶H0È\x98ñü\xa0<Ô}\n'
|
||||
[2025-02-22 10:45:42,293] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231300 object, fd=112, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.239', 63216, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91àò\x17'÷¹4Æ\x89e\x17{b?ñ\x04/ªa\x95Æë{Xìÿ=gÁ\x03Ô\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91àò\x17'÷¹4Æ\x89e\x17{b?ñ\x04/ªa\x95Æë{Xìÿ=gÁ\x03Ô\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-22 12:34:17,829] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c8040 object, fd=113, family=10, type=1, proto=0>: (from ('::ffff:145.239.154.82', 37570, 0, 0)) Invalid http version: '\x16\x03\x00\x00i\x01\x00\x00e\x03\x03U\x1c§ärandom1random2random3random4\x00\x00\x0c\x00/\x00\n'
|
||||
[2025-02-22 19:01:58,682] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b26e0 object, fd=112, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.249', 63658, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03·\x17!\x06+<\x1dçd\x19Ó¯;d\x03\x94*\x8dã\x82þ[õ\x1cà*Qa\x10d±¥ ÿ\x11[\x07Zµ\x88ÒÏ\x8a\x90}ë\x84mËñ\x87\x11íÇÆ@4\x83\x96Â,,øI\x10\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-22 19:01:59,043] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b26e0 object, fd=112, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.249', 63668, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Ú´¯\x1bp\x15\x19.\x9c^¾\x18Â\x17ÀÕÈËlq¸b\xa0&\x0bþ\x8cOís\rä\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-22 22:40:04,464] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b1fc0 object, fd=112, family=10, type=1, proto=0>: (from ('::ffff:185.165.191.27', 36886, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03Lta¸ô\x0f\x1e´-\rs¸¶oçßnuÄ\x0eä{r³\x13:\x85^{\x87H\x84\x00\x00rÀ0À,À(À$À\x14À\n'
|
||||
[2025-02-23 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-24 04:00:00 UTC)" (scheduled at 2025-02-23 04:00:00+00:00)
|
||||
[2025-02-23 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-24 04:00:00 UTC)" executed successfully
|
||||
[2025-02-23 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-24 04:10:00 UTC)" (scheduled at 2025-02-23 04:10:00+00:00)
|
||||
[2025-02-23 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-24 04:10:00 UTC)" executed successfully
|
||||
[2025-02-23 18:49:33,008] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c8220 object, fd=113, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.204', 54619, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x81ÎC®¡m²ò\x7f\x13ø2\n'
|
||||
[2025-02-23 18:57:05,518] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c8b20 object, fd=113, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.244', 53093, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03?\xa0Î\x122AÊú \x12m#>¢»]\x97«l\x8cóÌBßyDª*ëûôÜ 3iAk©\x97\x7f{¢ö\x07\x8c\x13\t3£ëþ\n'
|
||||
[2025-02-23 18:57:07,192] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e6f80 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.254', 46225, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03«\x99Ö\x7fpæ¯\x89Ôá8xË!sÝz\x00\xa0Â3\x9fñl,ýNA\xa0\x89ó\x92 A\x1dáúí6;Göï\x1d,\x13\x14\x13Ý\x91.O\xad«\x02ï\x00\x93§2\x87{Ú9-\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-23 19:03:08,294] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c8b20 object, fd=113, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.97', 36679, 0, 0)) Invalid http version: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Û+\xad\x82ñ\x9d\xa0\r(ª*;À\x9fd\x10\x19¿-ï#²\x91¹",(\x04!\x12\x01N \x81\\\x12,\x9f·î×Ê<\x01ðìC\x92\n'
|
||||
[2025-02-24 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-25 04:00:00 UTC)" (scheduled at 2025-02-24 04:00:00+00:00)
|
||||
[2025-02-24 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-25 04:00:00 UTC)" executed successfully
|
||||
[2025-02-24 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-25 04:10:00 UTC)" (scheduled at 2025-02-24 04:10:00+00:00)
|
||||
[2025-02-24 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-25 04:10:00 UTC)" executed successfully
|
||||
[2025-02-24 04:25:49,562] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c9900 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.81', 60628, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03F\x1cF·\x92\x10\x89]E\x81Ȩe-Å,,¶r\x12|r\x98\xa0X*pz\x0bo%¾ ½&\x06\x07nj\t)\x93ÆJ\x8b\x11½\\i.C¥'U«6ÝC7o\xad¸î\x89Ø\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-02-24 04:25:49,730] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c99c0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.81', 60634, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03l122ñ{º¾Él¿èAó\x06Lí\x90EïÌ<\x8e;Þ£°ÃÊ\x0c[\x18\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-24 05:15:34,567] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e70a0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:40.85.153.102', 52870, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-24 08:58:42,762] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e70a0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:167.71.44.3', 57546, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03Æ\x0e~ÜPî\x11f{¼Ä\x90]FÉÑ`´*rU=F\x12ø³\x18\x17\x8dë½h ¶L\x90vJÍ*$\x86lb\x17¸{\x921C\x7foÂfì:g:³p\x15.ÓÁç\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-24 17:12:58,422] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e70a0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:172.245.40.162', 60036, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03'; path='÷\x93\x10\x1a¨åüý_$\x94ÕÈÏ£p'; raw='\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03\t÷\x93\x10\x1a¨åüý_$\x94ÕÈÏ£p\n'
|
||||
[2025-02-24 17:13:00,137] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e70a0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:172.245.40.162', 60044, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03\x10\x10\x83þ-\x14£åä¹\x02l+ºG\x0f\x8a\xa0;t\x9aZôBJíÝþ^DÆ¡ øYA\x16a\x15¯\x95òB\x97¢ÑÉE\n'
|
||||
[2025-02-25 01:59:44,567] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c99c0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.55', 64390, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03°1ÿ^½Ü\x91,&±3òa\x1e:\x8eC\x0f¥÷ÁZ\x1b\x8fO8:²\x7fbh\x87 \x08-\x9d#\x90\x04wc\x99B\x05é\x1b\x95£Ká%´\x98*\x00¨\x9bÏû\t+6RßË\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-25 01:59:44,837] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51ca380 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.55', 64402, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03yO¯/¨NpF«w\x06W\n'
|
||||
[2025-02-25 03:04:40,575] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e70a0 object, fd=114, family=10, type=1, proto=0>: (from ('::ffff:172.202.252.39', 53626, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-25 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-26 04:00:00 UTC)" (scheduled at 2025-02-25 04:00:00+00:00)
|
||||
[2025-02-25 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-26 04:00:00 UTC)" executed successfully
|
||||
[2025-02-25 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-26 04:10:00 UTC)" (scheduled at 2025-02-25 04:10:00+00:00)
|
||||
[2025-02-25 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-26 04:10:00 UTC)" executed successfully
|
||||
[2025-02-25 05:00:38,038] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c9c60 object, fd=115, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 54760, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-02-25 05:00:42,596] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231180 object, fd=115, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 55428, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03\x195Ê7S<`µ %ä#\x1dÅJ¶w¬\x01æ\x15-UË_\x84½ì±@£C \x8cÂ+\x02ö²isç*È\x1c¼ãÄ\x15\x18â\x95]õ\x06u\x9buNÞ\x808`=\x06\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n"
|
||||
[2025-02-25 05:00:44,632] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cac80 object, fd=115, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 55656, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03A¬Ìæ\x01\x98ã`N\x10kO\x9bôÃö\x17\x0c··i\x01AI\x8c\x02M\x83T¸2¯ C½C¥vJ¤6Cá&\x15º(4×ñÄBï'ØI¹±Q\x10µP\x90Ö\x1d\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n"
|
||||
[2025-02-25 05:00:48,535] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e7220 object, fd=115, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 55776, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03å.¶T¯ÿæW\x96Y\x9a)\n'
|
||||
[2025-02-25 05:00:48,584] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e7220 object, fd=115, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 55778, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03ÒCV\x12Ä\x8fµx\x88\x9c´#f\x16\x15\x11\x1djë[Ô/ï*ïQ\x02LÛH\x00ê ßâä*y@-\x90Þj@0\x81Ò_Õ÷CD\x1f\x92×"ø\x1981áaÂ\x06R\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À\'\x00g\x00@ÀrÀv\x00¾\x00½À\n'
|
||||
[2025-02-25 05:00:49,636] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5233940 object, fd=118, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 54868, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-02-26 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-27 04:00:00 UTC)" (scheduled at 2025-02-26 04:00:00+00:00)
|
||||
[2025-02-26 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-27 04:00:00 UTC)" executed successfully
|
||||
[2025-02-26 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-27 04:10:00 UTC)" (scheduled at 2025-02-26 04:10:00+00:00)
|
||||
[2025-02-26 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-27 04:10:00 UTC)" executed successfully
|
||||
[2025-02-26 08:25:53,099] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb280 object, fd=116, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.87', 62866, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x02E9笪:P\x8cÆ<3íCD\x850q5±\x13\x0cm\x85o\x8d«©³ÞÆ\x86 BZ\x1bN\x9f\x9d\x85ëI[å\x92\x8e?\x03<(hn\x1eÒ\n'
|
||||
[2025-02-26 08:25:53,258] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb280 object, fd=116, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.87', 62870, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03C\x08Sþô"\x16\x93²¢v\x11\x84Q»©u^\x04\'BK\x9d3Õ\x92\x9eP\x00%;Q\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03C\x08Sþô"\x16\x93²¢v\x11\x84Q»©u^\x04\'BK\x9d3Õ\x92\x9eP\x00%;Q\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-02-26 20:30:27,963] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52338e0 object, fd=116, family=10, type=1, proto=0>: (from ('::ffff:48.216.197.96', 39982, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-27 01:13:36,724] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231c00 object, fd=116, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.249', 54535, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¬8¶6Ƭ\x97\x1f\x86¯\x07$\x14c\x17?t4·\x19"(Nè;Á\x91Û;\x81cñ \x93\t°ýò\x8b<\x94\x993!î\x92÷ù\x05\xa0=Kñ\x1c\xadøÓ\x94ë3\x1f\x98\x90ÏÝ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-27 01:20:08,659] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52338e0 object, fd=116, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.20', 51927, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÒÝó\x9f\x84\x0cÏö\x1dÐCnR\x112aNùññ\x88L¾Ùç§<\x81\x13ñzo Oû?éÿÔi2Ò¢½È.TH\x1b\x8a\x00\x91CÒðG1\x9fÝä¸vãy\x82\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-27 01:20:08,858] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5232d40 object, fd=117, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.23', 55295, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÙQ\x14\x99\x17\x9e\x0b¤Ò¾\x1dB\x1fóÔa\x8e\x1aÀ\x10\x1aè\x8c\x19Oq=Ú8à,ä ¸aàù\x13®Äp5Á¤\x01\x16\x98e¨b\x01\x13\x9fÃÛ×ò\x12ÜÇã\x8d}í:\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-02-27 01:27:09,527] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51e5f60 object, fd=116, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.10', 60885, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ác\x13Nÿ3Ø3ò\x93G8ó±û|\x10²9æiÿ\x10Ï\x12:!¡rßÖh \x1fò\x06\x9e@ê×Ò\xadÏ\x1d/ñ\r\x16>\n'
|
||||
[2025-02-27 04:00:00,002] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-28 04:00:00 UTC)" (scheduled at 2025-02-27 04:00:00+00:00)
|
||||
[2025-02-27 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-28 04:00:00 UTC)" executed successfully
|
||||
[2025-02-27 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-28 04:10:00 UTC)" (scheduled at 2025-02-27 04:10:00+00:00)
|
||||
[2025-02-27 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-28 04:10:00 UTC)" executed successfully
|
||||
[2025-02-27 04:25:08,703] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cafe0 object, fd=117, family=10, type=1, proto=0>: (from ('::ffff:180.149.125.163', 60993, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03G\x8b\x95¹øà\x04\x05]±2\x7fx¡ \x15¼â=¶ï\r\xa0\x12V\x0b©\x7f\xadÂõ\x84\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-27 06:22:42,386] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cafe0 object, fd=117, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.18', 58900, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03³Ô\x02³ù3\x84ÖÄ\xa0¥\x9b\x84àJQ\x80bcý\x10ÿ\x9c¶\x89@¢U}S\x19^ Óßâxu\x08h\x7fá\rÔ\x98\x94\x0fl\x85\x84v}¢÷[\\;\x0bûß!®\x9e\tÕ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-27 06:22:42,554] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cafe0 object, fd=117, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.18', 58914, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¼Ê\x7ffv_\x88©3\x0eZéÀ¥5'; path='u\x98¸\x9d=\x81'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¼Ê\x7ffv_\x88©3\x0eZéÀ¥5\x0cu\x98¸\x9d=\x81\n'
|
||||
[2025-02-27 16:42:02,539] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231780 object, fd=117, family=10, type=1, proto=0>: (from ('::ffff:4.151.220.102', 52266, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-27 18:28:06,754] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52314e0 object, fd=117, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 64640, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-02-27 21:14:06,092] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231780 object, fd=118, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 65179, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-02-27 22:21:32,760] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231780 object, fd=118, family=10, type=1, proto=0>: (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-02-28 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-01 04:00:00 UTC)" (scheduled at 2025-02-28 04:00:00+00:00)
|
||||
[2025-02-28 04:00:00,010] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-01 04:00:00 UTC)" executed successfully
|
||||
[2025-02-28 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-01 04:10:00 UTC)" (scheduled at 2025-02-28 04:10:00+00:00)
|
||||
[2025-02-28 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-01 04:10:00 UTC)" executed successfully
|
||||
[2025-02-28 09:39:19,958] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231c00 object, fd=119, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.238', 63252, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x18u\x99#¤ß<nÊ\x84ãW\x1eð\x1ff\x0b\x14ö\x0fÙJ\x927Þ´Å\x85YñH\x7f ñIj\\ww¬q\x11%N\x08Ç\x7fâÏtå(¦¿\x1e\x12ÿå]`2ç\x7f7V\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-28 09:39:20,318] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a5420 object, fd=119, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.238', 63266, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ñ`íÉ\x8dv,Wó\x97}õÆßr\x8fd\x85\x85}ÎÕW\x08ú?J\x16\x19¡\x03Ò\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-28 11:20:14,787] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a55a0 object, fd=119, family=10, type=1, proto=0>: (from ('::ffff:194.164.107.6', 45874, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x03\x9b:\x89iòyª\x80:ùÅ0* \x90æºÀìÁpÑ1xv\x99%\x9cv\x8d: I\x1fÑ\x15.3\x9c¨N\\\x8fKÙ6+Ï%O\xadÆ5ì\x00Yã\x91n{\x9dÕ¸û\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-02-28 14:08:09,696] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5231c00 object, fd=119, family=10, type=1, proto=0>: (from ('::ffff:4.246.246.248', 42952, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-28 15:05:05,240] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51ca8c0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.22.27.43', 47996, 0, 0)) Invalid HTTP method: '\n'
|
||||
[2025-02-28 15:10:45,506] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb940 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.22.27.43', 36614, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03/ðFGPQØ*V\x95ý\x0eMÎ\x8cõ\x1fíi´ë\x0cÁ$d\x15ÜäEá\x8e~\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-28 15:11:50,379] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.22.27.43', 36348, 0, 0)) Invalid HTTP method: 'SSH-2.0-Go\r\n'
|
||||
[2025-02-28 15:14:17,910] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.22.27.43', 37446, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x0e\x90HQÐëªØ\x89¦H i:¦|ÐL\x07b²d);á£]PKô¬\x1a\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-28 15:35:40,651] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51ca8c0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.12.36.233', 58854, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03K*SÑ\n'
|
||||
[2025-02-28 15:35:41,503] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.12.36.233', 58858, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03§^¨ß\x16{il/ã\rÆö@;7\x11\x9cµ\x97î´%Ãf\x9b`\x89-ðjá\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-02-28 15:36:18,695] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c82e0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:3.12.36.233', 52382, 0, 0)) Invalid HTTP method: '\n'
|
||||
[2025-02-28 21:04:29,658] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51866, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ý2vÛeø«¤6\x8d·\x12'\x03áI¾\x94U\x11¿YУë]/\x80×\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n"
|
||||
[2025-02-28 21:04:29,768] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51870, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ýã&Nô\x1aÏô¡\x9f"XÌ\x12j\x9fê¬\x17)fvÊx}dä\x07]\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À\'À\n'
|
||||
[2025-02-28 21:04:29,874] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51874, 0, 0)) Invalid http version: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ýð¿íGàs\x8cÅco\x88\x1c®èè\xadz?¯Ãwb¢Ò\x02ñh\x1e\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n"
|
||||
[2025-02-28 21:04:29,980] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51879, 0, 0)) Invalid http version: '\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Ýò\x94h+"/n!êõf´¦áÓd=\rĸ\x17\x7f\x14\x1e+2²ý\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À\'À\n'
|
||||
[2025-02-28 21:04:30,093] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51883, 0, 0)) Invalid http version: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Þæ\x901¶6\x18\x85¢Wì\x07\x1a¸jP2§\x90\x88²SÔ\x1fõNÔæî\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n"
|
||||
[2025-02-28 21:04:30,203] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51886, 0, 0)) Invalid http version: "\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Þ¹\x874(\x97d\x0f\x96\x8d\x1c½R~í(ý^\x0f×B\xa0alÜlf\x9d*\x00\x00*À,À+À0À/\x00\x9f\x00\x9eÀ$À#À(À'À\n"
|
||||
[2025-02-28 21:04:30,303] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51ca8c0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:217.196.98.18', 51889, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x00\x8e\x01\x00\x00\x8a\x03\x03gÂ$Þ4\n'
|
||||
[2025-02-28 21:28:09,041] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c9a80 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:172.245.241.123', 49692, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03y\x82\x9aóç\x8a\x92vgËE\x8e1ïG\x8e\x1añF\x82Êü±\x89N\x86\x1b¼\x85\x84eÊ û7eèñqÎrv¹¯ÈVÝ\x1b\x02ûô\x1d\x0cØþø\x14¯¦¾)ýþ?5\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-01 00:08:18,149] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c82e0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.204', 58762, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x95Å\xad\x9b²\x1e·ß\x98Bý\x84¨íªO¶7µT«vF}Ü=0dåèÚX {r:\x96\x92ÿ[\x17ÏyÉõîâý\x98 ,§q\x99²Ë»ðä\x01Òªê9Î\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-01 00:08:18,309] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52306a0 object, fd=120, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.204', 58772, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03IêÍÅî\x9d\x14\x04zÁÇ\x98u\x18\x91Í4\x0c\r\x9dk2\x87r(uÉ2KZ½§\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-01 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-02 04:00:00 UTC)" (scheduled at 2025-03-01 04:00:00+00:00)
|
||||
[2025-03-01 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-02 04:00:00 UTC)" executed successfully
|
||||
[2025-03-01 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-02 04:10:00 UTC)" (scheduled at 2025-03-01 04:10:00+00:00)
|
||||
[2025-03-01 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-02 04:10:00 UTC)" executed successfully
|
||||
[2025-03-01 16:45:20,907] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cae00 object, fd=121, family=10, type=1, proto=0>: (from ('::ffff:137.220.145.118', 55434, 0, 0)) Invalid HTTP method: '\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Ê\x0026'
|
||||
[2025-03-01 22:07:29,174] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cabc0 object, fd=121, family=10, type=1, proto=0>: (from ('::ffff:47.250.142.224', 33876, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé<Z¡\x90T·é¥8'O;\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-03-02 03:47:55,025] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed52b3220 object, fd=121, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.86', 65006, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8fN`\x13´\t³\x90Y\x96\x0c\x92WU£\x9bS9e©uÀQÞ\x87\x88M|A¿\x01| Ó\x8c5Ë\x83\x8cÄ\x17´"\x1a\x03!µb\x19b\x12Õs\x05\x86\x9dÁ=«\x9b´.$°4\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-03-02 03:47:55,301] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b20 object, fd=121, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.86', 65020, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x87~ÞpÚ¤\x9f\x02]QXL3U\x0bWØN9EíTþÐ*¿â\xa0\x89»Ü<\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-03-02 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-03 04:00:00 UTC)" (scheduled at 2025-03-02 04:00:00+00:00)
|
||||
[2025-03-02 04:00:00,005] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-03 04:00:00 UTC)" executed successfully
|
||||
[2025-03-02 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-03 04:10:00 UTC)" (scheduled at 2025-03-02 04:10:00+00:00)
|
||||
[2025-03-02 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-03 04:10:00 UTC)" executed successfully
|
||||
[2025-03-02 11:34:17,010] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b20 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:182.237.2.170', 55592, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00°\x01\x00\x00¬\x03\x03v5â½\x05N¯\x18TÞRT\x87¥£6ßÝÄ´RÍÂ\n'
|
||||
[2025-03-02 12:43:56,586] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b20 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:152.32.235.69', 41804, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03)·\x021ªÚ\x9döíè½ÅW\x07\x9b\x13÷\x18ÑúÄ\n'
|
||||
[2025-03-02 12:43:56,680] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee3b20 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:152.32.235.69', 41812, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n'
|
||||
[2025-03-02 18:34:19,274] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51caf20 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.35', 38591, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x0167=¼÷P9þÎ\x08\x1f\xad\x10£Àâ7!kÒA\x0e<øÞÓk|ÊÂû \x8eøðÖúL£î¬¨\x8bí³_â¯F\x11\x83Äsðí:Â@Ê&\x8cs\r4\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-02 18:40:07,193] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb9a0 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.28', 39881, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03,ßò#ºó\x8bò\xa0-\x1bJ?Ê̳\x91Î%Õ\x04ì¬\x8dßkÞä³ÎòÝ ¾L"dÊþ\x9f¨p\x82z2\t=ùÞ¬lâ\x14m\x043¯\x1fÊ¢\x91h\x1bÁL\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-02 18:41:06,423] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb9a0 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.30', 45245, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x93\x10*uƺ8\x0f@¦0ú\x8a\x8d2\x04¤\x8f³yýº@s\x94!\x00\x92»=ü6 \x964,\x90PÚÖ2»\x9bZÂ\x1f[\x11_\x04v,2\x123-3s½°Ó\x933Zû\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-02 18:47:08,641] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb9a0 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:91.196.152.16', 37857, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03í3-Ѷ=ú\xadåÄ\x02mË: ½½\rÂ\x1a\x83\x93=ÏÛ¢*s3\rÖò ú\x13ÄÿO\xad³\x19a7bÂì4Ûç\x0f\x8aÞÚ\x11b\x036(Á³3\x9eæÿù\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-03-02 20:30:43,673] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51c84c0 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.210', 61484, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x038{F©=fâ<¨\x90ï\x98´\x10t\x86\n'
|
||||
[2025-03-02 20:30:43,833] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51cb9a0 object, fd=122, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.210', 61488, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ß\x9a\x01ÚF·\x05¹¿0\x15/u\x06â\x94\x01NÌÏz|\x83m\n'
|
||||
[2025-03-03 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-04 04:00:00 UTC)" (scheduled at 2025-03-03 04:00:00+00:00)
|
||||
[2025-03-03 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-03-04 04:00:00 UTC)" executed successfully
|
||||
[2025-03-03 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-04 04:10:00 UTC)" (scheduled at 2025-03-03 04:10:00+00:00)
|
||||
[2025-03-03 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-03-04 04:10:00 UTC)" executed successfully
|
||||
[2025-03-03 06:12:26,511] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7c40 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:20.29.22.209', 37568, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-03-04 00:01:18,207] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed51a7c40 object, fd=123, family=10, type=1, proto=0>: (from ('::ffff:20.171.25.216', 50388, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
338
conf/calibre-web/calibre-web.log.2
Normal file
338
conf/calibre-web/calibre-web.log.2
Normal file
@@ -0,0 +1,338 @@
|
||||
[2024-12-28 02:34:19,866] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53edb40 object, fd=47, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.71', 60930, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ó#^k+\x86\x81\x18.\x8f\xad)¸_øÇ\x04\x02\x06\x88\x15n\x9fMºùDÒ«\x1am\x12\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ó#^k+\x86\x81\x18.\x8f\xad)¸_øÇ\x04\x02\x06\x88\x15n\x9fMºùDÒ«\x1am\x12\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2024-12-28 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-29 04:00:00 UTC)" (scheduled at 2024-12-28 04:00:00+00:00)
|
||||
[2024-12-28 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-29 04:00:00 UTC)" executed successfully
|
||||
[2024-12-28 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-29 04:10:00 UTC)" (scheduled at 2024-12-28 04:10:00+00:00)
|
||||
[2024-12-28 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-29 04:10:00 UTC)" executed successfully
|
||||
[2024-12-28 09:33:35,351] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed500b220 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:101.36.127.24', 38866, 0, 0)) Invalid http version: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03rGÑê>r7rl?\x11\x19]ZpïØÚå³°Y&Æ\x9fÕÈï\x849v\x8e ßvfH\x91¦¨i"£ÅÎ\x08V\x11,\x10(µP¼[!¦OÅ\x1b·¦\x16;¥\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2024-12-28 09:33:35,749] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed500b220 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:101.36.127.24', 38968, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n'
|
||||
[2024-12-28 10:25:16,521] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53ef2e0 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:104.156.155.31', 49616, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2024-12-28 10:25:26,847] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53ef3a0 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:104.156.155.31', 56576, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03\x15\n'
|
||||
[2024-12-28 10:25:27,658] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53eeb00 object, fd=54, family=10, type=1, proto=0>: (from ('::ffff:104.156.155.31', 49682, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2024-12-28 13:29:59,032] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53ef6a0 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:40.78.88.153', 33920, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2024-12-28 18:14:35,911] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53ef6a0 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.233', 58614, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03½j\x9dÀ²Þm\x98ü\x8b\x8bÛ¸T\x0e¨s\x8eV2ÿ'àF*Û\x86Yâi÷o \x16\x97\x91ÃÄ\x00 kyÀ\x1b\x9dwÊÌ\x7fê½}\x87À\x86(kw\x9eF,¡\x8aÈ\x1c\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2024-12-28 18:14:36,224] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed50a3e20 object, fd=48, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.233', 58618, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¬\x91\x01i»¿\x98ýºlÉ\x12\x10õ¿\x820\x0cP"Q7Ȧº\x13\x9c<9þ½°\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2024-12-29 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-30 04:00:00 UTC)" (scheduled at 2024-12-29 04:00:00+00:00)
|
||||
[2024-12-29 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-30 04:00:00 UTC)" executed successfully
|
||||
[2024-12-29 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-30 04:10:00 UTC)" (scheduled at 2024-12-29 04:10:00+00:00)
|
||||
[2024-12-29 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-30 04:10:00 UTC)" executed successfully
|
||||
[2024-12-29 15:57:44,044] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed50a3e20 object, fd=49, family=10, type=1, proto=0>: (from ('::ffff:71.6.199.23', 47686, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03\x9dKô×j\x13\x11Í\x00¤\x0fº>¼ìÁòCÍøFe\x8em\x91¯k¹'; path='˨Â\x00\x00rÀ0À,À(À$À\x14À'; raw='\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03\x9dKô×j\x13\x11Í\x00¤\x0fº>¼ìÁòCÍøFe\x8em\x91¯k¹\t˨Â\x00\x00rÀ0À,À(À$À\x14À\n'
|
||||
[2024-12-30 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-31 04:00:00 UTC)" (scheduled at 2024-12-30 04:00:00+00:00)
|
||||
[2024-12-30 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2024-12-31 04:00:00 UTC)" executed successfully
|
||||
[2024-12-30 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-31 04:10:00 UTC)" (scheduled at 2024-12-30 04:10:00+00:00)
|
||||
[2024-12-30 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2024-12-31 04:10:00 UTC)" executed successfully
|
||||
[2024-12-30 05:53:33,514] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53eea40 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:172.168.155.103', 40712, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2024-12-30 07:37:58,571] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:45.130.145.9', 63604, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2024-12-30 08:21:18,643] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.224', 57900, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8c?\x94ÈQ\x03¦K,c\x13\x90\x82q\x8dv\x15/hgÕS¨w\x08{ßsU)e× a3\x8cà\x1cäÏ\x10ùöÿÕÍNSMNÙùÕ`â\x99Ò¶(îoUkÀÄ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2024-12-30 08:21:18,960] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.224', 57916, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03õ¿iK\x85U\x19\x9f\x0f]$#ù{Û\x98ª0UH\x9c\\ì\x1aÉ}m\x05BØüî\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2024-12-30 08:27:47,380] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:45.130.145.9', 63423, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2024-12-30 09:10:58,036] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53efe80 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:45.130.145.9', 65091, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2024-12-30 12:39:38,003] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:45.130.145.9', 35399, 0, 0)) Expected GET method; Got command='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00'; path='\x00\x00\x00'; raw='\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x0b\x00\x00\x00'
|
||||
[2024-12-30 23:41:36,863] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4fcbd60 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.101', 58342, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ÙS\x96Þ\x92Õ\x1ea/\x83òÖ\x80\x11~"M#ÜU\x05Éè\x8bH\x03ñ4,vö¸ 5¦ô°\x82Å\x04müG\x13\x95¹¼ççLÔM»0N44\x87L[¦\x17m=Â\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2024-12-30 23:41:37,137] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.101', 58344, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03¢f-\n'
|
||||
[2024-12-31 03:38:38,426] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed509e920 object, fd=50, family=10, type=1, proto=0>: (from ('::ffff:128.14.239.38', 40020, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03¶.^|\x8cIT\x95S/oàä0pÝòg6¸!\x03(¦\x9b·ÕoýOc[ 7ê¨\x07øì\x96e\xa0ÆîQ\x8e\x11³Ù\x88¥ûè¥\x9ae·\x19Ô«¿¿2(p\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2024-12-31 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-01 04:00:00 UTC)" (scheduled at 2024-12-31 04:00:00+00:00)
|
||||
[2024-12-31 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-01 04:00:00 UTC)" executed successfully
|
||||
[2024-12-31 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-01 04:10:00 UTC)" (scheduled at 2024-12-31 04:10:00+00:00)
|
||||
[2024-12-31 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-01 04:10:00 UTC)" executed successfully
|
||||
[2024-12-31 14:06:44,158] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d89a0 object, fd=51, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.230', 43208, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03òáï´_·\x92\x10¸0]äBD©\x98K\x9d¤¬dT\x96¥zÒnJ\x9eIØ\x11 i{NÑJt+ÓÛ%\x027\x1dâ{môj¼\xa0z7+0\x10G'\x8d\x84\x1c/µ\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n"
|
||||
[2024-12-31 14:41:37,781] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=51, family=10, type=1, proto=0>: (from ('::ffff:31.43.185.66', 61644, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2024-12-31 20:40:44,649] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=51, family=10, type=1, proto=0>: (from ('::ffff:52.226.2.121', 34238, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-01 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-02 04:00:00 UTC)" (scheduled at 2025-01-01 04:00:00+00:00)
|
||||
[2025-01-01 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-02 04:00:00 UTC)" executed successfully
|
||||
[2025-01-01 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-02 04:10:00 UTC)" (scheduled at 2025-01-01 04:10:00+00:00)
|
||||
[2025-01-01 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-02 04:10:00 UTC)" executed successfully
|
||||
[2025-01-01 04:25:09,810] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008b80 object, fd=52, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.85', 58112, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x0304\x08\x05%Q\x12ï\r¡LþÎ/U}í&\xadìÁ¨K8pæ\x15U\x80ÀvQ ]"E@\x06ÚVZ7vtAê¶\x00RZ\x92ÔT^\x83n.ªMq¤2",]\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-01 04:25:09,971] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008b80 object, fd=52, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.85', 58120, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03®^IÀU»îÇ\x938\x92\x95\x0fÙüT7ÙéygËpíN\x7f\x81·\x0c\x8a\x1d\x06\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-01 07:43:38,654] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d9f00 object, fd=52, family=10, type=1, proto=0>: (from ('::ffff:138.68.247.47', 44266, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-01-01 19:56:17,899] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=52, family=10, type=1, proto=0>: (from ('::ffff:3.142.47.109', 40098, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x002}\x02Þa:\x11$oy¯\x96i\x8eô¡£ã\t.\x087\x06hP^)\x93\x93ÍI\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-01 22:34:31,712] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d9f00 object, fd=52, family=10, type=1, proto=0>: (from ('::ffff:8.209.91.228', 30488, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé<Z¡\x90T·é¥8'O;\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-01-02 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-03 04:00:00 UTC)" (scheduled at 2025-01-02 04:00:00+00:00)
|
||||
[2025-01-02 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-03 04:00:00 UTC)" executed successfully
|
||||
[2025-01-02 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-03 04:10:00 UTC)" (scheduled at 2025-01-02 04:10:00+00:00)
|
||||
[2025-01-02 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-03 04:10:00 UTC)" executed successfully
|
||||
[2025-01-02 08:56:47,921] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.105', 62808, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03@\x81G5lù¹2#¾zI\x16g\x1dz}ÞO¢\x8eT«ë\x05\x87\x07\x14÷ëZ. 5¯7DZº7ü§eø\x82i¼\x15\x1e;m\x16\x9bé2Ç\x1dY6{ÎT\n'
|
||||
[2025-01-02 08:56:48,080] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.105', 62820, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03µ£\x0c\x9bô=ó\x93ê÷\x17\x9dxÁæïÎtÙÒ.\x95¥©\x04ô©Rzÿ\tê\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-02 13:21:09,285] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da2c0 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:40.78.127.139', 58306, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-02 21:53:20,714] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.101', 57840, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03xSýÚ\x9a\n'
|
||||
[2025-01-02 21:53:20,990] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5008ca0 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.101', 57842, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x96QMÌ\x11ß]¡Æ\x017N\x94~½Og\x1eYo\x9f+;\x85$«ÂÌ\x16\x1b¦\x14\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-03 00:26:30,789] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da080 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 49960, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-01-03 00:26:41,053] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53eebc0 object, fd=53, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 45220, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03nì \n'
|
||||
[2025-01-03 00:26:41,793] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da380 object, fd=58, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 49994, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-01-03 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-04 04:00:00 UTC)" (scheduled at 2025-01-03 04:00:00+00:00)
|
||||
[2025-01-03 04:00:00,004] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-04 04:00:00 UTC)" executed successfully
|
||||
[2025-01-03 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-04 04:10:00 UTC)" (scheduled at 2025-01-03 04:10:00+00:00)
|
||||
[2025-01-03 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-04 04:10:00 UTC)" executed successfully
|
||||
[2025-01-03 04:51:50,630] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5374040 object, fd=54, family=10, type=1, proto=0>: (from ('::ffff:4.156.237.242', 47160, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-03 21:33:32,470] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee01ce320 object, fd=54, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.165', 64428, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03vN\x7fI`«\x07åSn3\x0c\x85\x80Ä\rË\x131:kßòsë\x8f\x0bA\x00\x8b³¢ b¼\n'
|
||||
[2025-01-03 21:33:32,626] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee01ce320 object, fd=54, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.165', 64444, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03|ñ\x1c<ÎÛâ\x05"ýó\x91\x0b\x92>\x91µ\x7fR JW\x1b\x14\x00}\x91/ôD\x93>\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-01-04 02:50:47,115] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee01ce320 object, fd=54, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.231', 53642, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x8eml©\x83âÞûa^\x96Ê\x985éF\x88ZÑ5´qÕ7_\x8dIõå\x08Z² ÏÞ\x10\x14·\x80¨3Êéyâqc¬®Òç/¡"7v®\x12¢mΧzO\x93\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-01-04 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-05 04:00:00 UTC)" (scheduled at 2025-01-04 04:00:00+00:00)
|
||||
[2025-01-04 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-05 04:00:00 UTC)" executed successfully
|
||||
[2025-01-04 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-05 04:10:00 UTC)" (scheduled at 2025-01-04 04:10:00+00:00)
|
||||
[2025-01-04 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-05 04:10:00 UTC)" executed successfully
|
||||
[2025-01-04 10:44:02,658] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee01ce320 object, fd=55, family=10, type=1, proto=0>: (from ('::ffff:5.101.0.66', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-01-04 19:22:34,487] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee01ce320 object, fd=55, family=10, type=1, proto=0>: (from ('::ffff:145.239.154.85', 50014, 0, 0)) Invalid http version: '\x16\x03\x00\x00i\x01\x00\x00e\x03\x03U\x1c§ärandom1random2random3random4\x00\x00\x0c\x00/\x00\n'
|
||||
[2025-01-04 21:25:03,776] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375cc0 object, fd=55, family=10, type=1, proto=0>: (from ('::ffff:172.168.159.9', 55620, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-05 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-06 04:00:00 UTC)" (scheduled at 2025-01-05 04:00:00+00:00)
|
||||
[2025-01-05 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-06 04:00:00 UTC)" executed successfully
|
||||
[2025-01-05 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-06 04:10:00 UTC)" (scheduled at 2025-01-05 04:10:00+00:00)
|
||||
[2025-01-05 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-06 04:10:00 UTC)" executed successfully
|
||||
[2025-01-05 08:55:09,365] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5376980 object, fd=56, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.21', 60004, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\r\x04¯\x7f\x1f\x8bßRU@#Oî[\x0bI´¢ \x1cc\x1aÎè{}_ÝuÁ̧ ¤yUPä_8\x8eòÄn\x86\x04%É[3ïïö\x86\x16\x0b4Éa\x0f\x04>?.f\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-05 08:55:09,525] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5374d60 object, fd=56, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.21', 60020, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x8b¥_äÄñ\x8b\x12ÞÐw]#*ì°µ\r\x01ñyy\x1faƹC¶_OÖ±\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-06 00:19:50,009] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375de0 object, fd=57, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.202', 58784, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x04¬?\x7fÆÊa8?\x05\x90Bn!\x97»§ÌºWê~}sr3s¯¦\x7fò\x1b Ï\x89\x9c³`\x1b½T*\x95\x80B!×\x8f\x8e\x10´aT.\x91Ð\x03ñhÙTvs\x88ã\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-06 00:19:50,371] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375de0 object, fd=57, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.202', 58796, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03hµP\x9aÖ\\ßó\t¤`|f\x84\x1e³.}+\x16\x02N\x7f¦1N\x08cÔ\x16%Ú\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-06 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-07 04:00:00 UTC)" (scheduled at 2025-01-06 04:00:00+00:00)
|
||||
[2025-01-06 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-07 04:00:00 UTC)" executed successfully
|
||||
[2025-01-06 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-07 04:10:00 UTC)" (scheduled at 2025-01-06 04:10:00+00:00)
|
||||
[2025-01-06 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-07 04:10:00 UTC)" executed successfully
|
||||
[2025-01-06 13:27:23,917] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5377460 object, fd=58, family=10, type=1, proto=0>: (from ('::ffff:172.168.152.22', 55608, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-07 01:41:07,294] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53774c0 object, fd=58, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.11', 62512, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03[\\Ã\x9cecÚ;·^\x05\x98Úh¾ÿ\x95\x0cïK\x93ä¼(W^\tXS\x91¯V -Qi̵ÖpíEty°zí\x1e³4\x8a>C\x01\x90åÙ\x94\x97¸J\x16\x1bÜ|\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-07 01:41:07,570] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375fc0 object, fd=58, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.11', 62514, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x0cû!¹\x85F\x87\x9c\x15\x84\x1dâ]U/RJ\x95Àdjò«·³f\t¤O\x1b 2\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-07 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-08 04:00:00 UTC)" (scheduled at 2025-01-07 04:00:00+00:00)
|
||||
[2025-01-07 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-08 04:00:00 UTC)" executed successfully
|
||||
[2025-01-07 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-08 04:10:00 UTC)" (scheduled at 2025-01-07 04:10:00+00:00)
|
||||
[2025-01-07 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-08 04:10:00 UTC)" executed successfully
|
||||
[2025-01-08 03:09:02,996] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532c1c0 object, fd=59, family=10, type=1, proto=0>: (from ('::ffff:172.206.140.188', 45402, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-08 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-09 04:00:00 UTC)" (scheduled at 2025-01-08 04:00:00+00:00)
|
||||
[2025-01-08 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-09 04:00:00 UTC)" executed successfully
|
||||
[2025-01-08 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-09 04:10:00 UTC)" (scheduled at 2025-01-08 04:10:00+00:00)
|
||||
[2025-01-08 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-09 04:10:00 UTC)" executed successfully
|
||||
[2025-01-08 08:57:59,384] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375720 object, fd=60, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.45', 61632, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03_â\x94¹5¤p\x95¢×ûd}\x9cÝX3{R0\x83Âúå¸\x1awi²£åE \x9aeH\x95keH\x96nº\x8d\x08\x8e\x9béÀ\x8c5R\x95·Y\\\x9d@h)Ã\x0eon\x1b\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-08 08:57:59,543] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375720 object, fd=60, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.45', 61638, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03/Ry+é,y\x1b\x04»©þÑu\x8fäÁ\x98Ì«Igór\x82\x9b#øÂ\x1cáT\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-08 12:42:10,366] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375720 object, fd=60, family=10, type=1, proto=0>: (from ('::ffff:180.149.125.173', 7315, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03\x99F¬æ¢4\x92§v<s@\x18<²\x0c:Tθ\tÈÍ\n'
|
||||
[2025-01-08 19:26:14,067] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5375720 object, fd=60, family=10, type=1, proto=0>: (from ('::ffff:172.168.152.6', 59758, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-08 23:14:27,234] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53ef880 object, fd=60, family=10, type=1, proto=0>: (from ('::ffff:3.139.94.102', 55454, 0, 0)) Invalid http version: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03R¥\x02«nò\x89Å\x13¥§"\x91þ\x0e\x00XçÐ=eÊ4Ô\x17X\x12¬\x1cj¢\x8d\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-09 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-10 04:00:00 UTC)" (scheduled at 2025-01-09 04:00:00+00:00)
|
||||
[2025-01-09 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-10 04:00:00 UTC)" executed successfully
|
||||
[2025-01-09 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-10 04:10:00 UTC)" (scheduled at 2025-01-09 04:10:00+00:00)
|
||||
[2025-01-09 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-10 04:10:00 UTC)" executed successfully
|
||||
[2025-01-09 07:14:30,284] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532c340 object, fd=61, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.154', 62532, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Í(2[:\x0c\x18òÔ¬KMè0\x15J%î:©\x8a¦\x1b\x88]ÁC_]\xad\x90^ \x81á÷\x1f\x9aí-{æG¬5¡\x87\x8aw?Æ\\@â9\x82¾\xa0\x01\x07Â3\x1f"¨\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-09 07:14:30,644] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532c400 object, fd=61, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.154', 62534, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03r>\x7fÒB\x1fî\x91Uw½b>\x89X\x8eQlÛto\xadUiëgHµ\x00\x93Zå\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-09 18:19:20,983] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dab60 object, fd=61, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.42', 61724, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x1bs¶8Ù¦¶M}ý\x9d¹\x81_ïjíð¢\x1bej9L$2ÓýÚ-UÖ è\x1aÂ|R¤D\x7f·ºÉ\x87¾Åáê\x88¢z\x9d¾\x87Ù¿°\rN>Í\x18\x87Ë\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-09 18:19:21,142] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d9e40 object, fd=61, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.42', 61730, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03!6¶+Æ¢\x17\x87\x04áú\x1d"ÿ%ûñ\x95ºÒ]\x18¼ÓÔe|×mY\x07\x14\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-01-09 22:11:03,127] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order
|
||||
[2025-01-09 22:11:13,556] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order
|
||||
[2025-01-09 22:11:36,011] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order
|
||||
[2025-01-09 22:14:16,222] ERROR {cps.db:883} Author Kagan, Robert not found to display name in right order
|
||||
[2025-01-09 22:14:23,191] INFO {cps.web:1237} Serving book: The Life-Changing Magic of Tidying Up_ The - Marie Kondo
|
||||
[2025-01-09 22:14:23,196] INFO {cps.web:1237} Serving book: The Life-Changing Magic of Tidying Up_ The - Marie Kondo
|
||||
[2025-01-10 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-11 04:00:00 UTC)" (scheduled at 2025-01-10 04:00:00+00:00)
|
||||
[2025-01-10 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-11 04:00:00 UTC)" executed successfully
|
||||
[2025-01-10 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-11 04:10:00 UTC)" (scheduled at 2025-01-10 04:10:00+00:00)
|
||||
[2025-01-10 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-11 04:10:00 UTC)" executed successfully
|
||||
[2025-01-10 10:40:03,596] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5322e60 object, fd=62, family=10, type=1, proto=0>: (from ('::ffff:52.228.167.157', 59122, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-11 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-12 04:00:00 UTC)" (scheduled at 2025-01-11 04:00:00+00:00)
|
||||
[2025-01-11 04:00:00,005] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-12 04:00:00 UTC)" executed successfully
|
||||
[2025-01-11 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-12 04:10:00 UTC)" (scheduled at 2025-01-11 04:10:00+00:00)
|
||||
[2025-01-11 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-12 04:10:00 UTC)" executed successfully
|
||||
[2025-01-11 05:41:14,661] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ff11e0 object, fd=64, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.108', 59160, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ù\x98\x86¸Té\x015¯IT\x1aÿHb\x17ѶÛ\'P\x83XÝ\x9cQhé\x9a\x82?î J3\x12#ú\x9b\\zJà\x9dëP;^\x1b?ý\x9a"\x0b^>ÌÜC/@ųo\x9c\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-11 05:41:14,822] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ff11e0 object, fd=64, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.108', 59166, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03p\x85l@Mûï\x12\x81ÇÑÁ\x97*Ùe\x94\x00³Mè\x9fè\x90Áb3Ê}\tQ\x88\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-12 01:51:35,237] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320be0 object, fd=64, family=10, type=1, proto=0>: (from ('::ffff:52.228.167.175', 57608, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-12 04:00:00,005] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-13 04:00:00 UTC)" (scheduled at 2025-01-12 04:00:00+00:00)
|
||||
[2025-01-12 04:00:00,008] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-13 04:00:00 UTC)" executed successfully
|
||||
[2025-01-12 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-13 04:10:00 UTC)" (scheduled at 2025-01-12 04:10:00+00:00)
|
||||
[2025-01-12 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-13 04:10:00 UTC)" executed successfully
|
||||
[2025-01-12 04:41:40,643] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5322ec0 object, fd=65, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.87', 58406, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Q7.N£`¦ÜÕ÷<é,ú4üz·#Â2s\x99Ûg\x8cjJðEêµ \x8fNá>\x1d~\\\x91\x89éM\x1f\x95cf\x15óöÏÎPÀ\x9eñ\x88\x87>z`\x04%\x18\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-12 04:41:40,919] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5322ec0 object, fd=65, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.87', 58420, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Y½Ê·sl¯\x00§>©\x07Óó(®æY\x03Ûóßxî\x1a1FI\x88ì]\x05\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03Y½Ê·sl¯\x00§>©\x07Óó(®æY\x03Ûóßxî\x1a1FI\x88ì]\x05\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-12 17:58:30,616] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532fe80 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:47.251.73.231', 54690, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé<Z¡\x90T·é¥8'O;\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-01-12 19:54:29,288] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532ca60 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:51.91.174.247', 42713, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x030¹8Ò¦´7\x06\xa0D\xad³~ß8m´ù7îÚâ=-îªÁLLû{\x1a Þ\x88Þ\x81\xa0w«K3\x97¿©2º\x96Ñ"boÞØ3Øk.\x80|6ê7NÒ\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-12 20:00:05,953] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53214e0 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.243', 40225, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x80#\x16ì\x04\x1bì(\x18ý~Æ*\x04a9«¯iÊó\x9b\x14\x16Á*$æìÝ\x0e\x04 v/2Ê#ñ2Z\x9c\x0fê:¶Ð\x16»¬íù[\xad\x03Ó¡a\x94×0\x1ds\x9e\x96\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-12 20:00:06,223] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53214e0 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.240', 40211, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x033¯î.»/û2ÂÂÁj$ã\x9e®r\x1dfÃAáëdf\x02ñ#.È\xa0\x0f A\x1e\x9bÀò\x13Ód\x1b\x8d\x16"\x00.>Öb?;+\x13\x1d©/\x1cïb!o\x93ß\x03\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-12 20:06:07,328] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320760 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.145', 50913, 0, 0)) Expected GET method; Got command='\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03'; path='9¾ºBô\x11ÑI\x9eÊ\x9e^1.ùi1W¸\x1bo'; raw='\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x1e9¾ºBô\x11ÑI\x9eÊ\x9e^1.ùi1W¸\x1bo\n'
|
||||
[2025-01-12 20:13:58,681] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320760 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.78', 57648, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x9a³ÕXª\x93íRâ¯ßç\x03\x00:"\x192\x82\x81楾ÞÚ\x9d\x0b\x06N\x0c×n g4le4\x81\x8dI\x0f;\x05DW\x85\x82:«Ââäß\\ñ¯\x7fØåÐ\x9e\x97¶!\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-12 20:13:58,842] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53214e0 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.78', 57664, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03åçÆ6\x06\x11ÞSýÈ\xadÖMÂî§é\x95\rùõ»¢\x9a\x11\x02ö\x9a+\tõM\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-12 20:29:13,832] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532c640 object, fd=65, family=10, type=1, proto=0>: (from ('::ffff:92.63.196.142', 57562, 0, 0)) Invalid HTTP method: '\x05\x01\x00'
|
||||
[2025-01-13 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-14 04:00:00 UTC)" (scheduled at 2025-01-13 04:00:00+00:00)
|
||||
[2025-01-13 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-14 04:00:00 UTC)" executed successfully
|
||||
[2025-01-13 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-14 04:10:00 UTC)" (scheduled at 2025-01-13 04:10:00+00:00)
|
||||
[2025-01-13 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-14 04:10:00 UTC)" executed successfully
|
||||
[2025-01-13 06:53:17,384] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532fe80 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 46708, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-01-13 06:53:27,828] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d9f00 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 44984, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03[\x93D²%t\x17B:öÒVý\x14\x05:éèöÐo)\x95k~K®zÝêí\x88 t$\x8f8D\x9d×üL\\\x0b_@1÷%ã¢SA]°fèE4®\x02{\x0e´\x1e\x00\x9c\x13\x02\x13\x03\x13\x01\x003\x009\x005\x00/À,À0\x00£\x00\x9f̨̩̪À¯À\xadÀ£À\x9fÀ]ÀaÀWÀSÀ+À/\x00¢\x00\x9eÀ®À¬À¢À\x9eÀ\\À`ÀVÀRÀ$À(\x00k\x00jÀsÀw\x00Ä\x00ÃÀ#À'\x00g\x00@ÀrÀv\x00¾\x00½À\n"
|
||||
[2025-01-13 06:53:28,862] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d9600 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 46744, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-01-13 16:36:03,910] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53d9600 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:4.156.236.58', 43346, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-13 20:41:18,840] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ff11e0 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:152.32.245.93', 46506, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03Õ|Ajå/Â\x9f\x04==Å\x92)8B*N!vd_;õ£Q"e\x1dûÓ\x0f \x87\x1a]×o+\x9e\x8e¬ã\x85®èË\x034æÃ\xa04\x8c\x06ý\x9f\x91Ë2S?ßâÑ\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-01-13 21:14:40,363] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee00dfe80 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.222', 61158, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03øy\x7f+øÕ\x0e\x9dA\x8e\x94\x90\'\x01Áo÷Ö\x01\x96\xa0÷º\\¢÷S\x0bVjlÈ C\x06r§g\x9cD3j¬i\x9a/u\x82®µöaÑ\x8aÓ2Úèê;KZÖm"\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-13 21:14:40,523] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ee00dfe80 object, fd=66, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.222', 61162, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x91P}Ôý÷\rñH\x87w7\x94å=¥\x9cá\x91(Oqq¯þ\x06ØðÐÕlÁ\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-14 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-15 04:00:00 UTC)" (scheduled at 2025-01-14 04:00:00+00:00)
|
||||
[2025-01-14 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-15 04:00:00 UTC)" executed successfully
|
||||
[2025-01-14 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-15 04:10:00 UTC)" (scheduled at 2025-01-14 04:10:00+00:00)
|
||||
[2025-01-14 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-15 04:10:00 UTC)" executed successfully
|
||||
[2025-01-15 02:16:25,381] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ff11e0 object, fd=67, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.108', 60276, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03|Hô\x88`\x18\x92<\xa0Ñ\x8cn°%a\x83¼î¼\x17\x85ª\x8fÈ\x8beoç5wÛ> 4`øpЬ\xad\x9a«J-Á\x1c\x00ä¦\x9c\x94pr¯V\x03ø\x9d?oL\x90\x88ô\x17\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-15 02:16:25,540] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ff11e0 object, fd=67, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.108', 60288, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x1eÒÄz\x85\x01"á-¿×\x16\n'
|
||||
[2025-01-15 02:51:02,635] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3c3a0 object, fd=67, family=10, type=1, proto=0>: (from ('::ffff:185.220.179.175', 49870, 0, 0)) Invalid HTTP method: '\x03\x00\x00\x13\x0eà\x00\x00\x00\x00\x00\x01\x00\x08\x00\x03\x00\x00\x00'
|
||||
[2025-01-15 04:00:00,003] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-16 04:00:00 UTC)" (scheduled at 2025-01-15 04:00:00+00:00)
|
||||
[2025-01-15 04:00:00,006] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-16 04:00:00 UTC)" executed successfully
|
||||
[2025-01-15 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-16 04:10:00 UTC)" (scheduled at 2025-01-15 04:10:00+00:00)
|
||||
[2025-01-15 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-16 04:10:00 UTC)" executed successfully
|
||||
[2025-01-15 07:35:26,976] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=68, family=10, type=1, proto=0>: (from ('::ffff:52.189.74.240', 44964, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-15 22:11:24,105] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3e440 object, fd=68, family=10, type=1, proto=0>: (from ('::ffff:52.249.35.110', 46584, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-15 23:17:45,085] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3d3c0 object, fd=68, family=10, type=1, proto=0>: (from ('::ffff:54.38.100.144', 48129, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03nzêÙü\x98O\x1dÈ\x8fý6\xa0\x1bÝZÛ\x16~!O\x029\x1d( Óï\x94\x16Ï´ \x82#!'ýß\x87º\x19Ò\x14ª¹¼\x99«âÇû=\x1b\x8f\x19/Ã=\x90àÁó\x96>\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-01-15 23:25:08,330] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3e440 object, fd=68, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.207', 50403, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03^ÕÒ~j\x0e(a¯¶\x8fmdÃ%\x13¼²\x01\x03ûNîË\x0f¢t±Ãyì M,ÒÀ¿êÑ\x91û\xad\x1a½ÆÁ\x9ecüù;o?>ôÓð3\x0c¶ò\x8f¸\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-15 23:25:10,151] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3c2e0 object, fd=69, family=10, type=1, proto=0>: (from ('::ffff:149.202.132.202', 35489, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03J³ñÑÿî*j3ó3/\x9f/Ù¼¾¬\x0bÙ2zý2³"\x0bÝÉ\x1e0 ã>|\x7f"Iö³¦Al\x8e¾\x0fy/\x1b\x01Ø\xad²óóõ\x8d\x9c¤<?ï\x80\x82\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-15 23:31:11,569] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3ec20 object, fd=68, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.242', 60689, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x13DvÞã~b\x1d:þÕËVC\x8aÍ2<É^ør\x9cá¹\x0cÉÄJÝ1! \x1dº\x8d\x06C\x13 3\x94\x80/à\x9dy\x1dp1\x07®\x0f\x0bÖÿ\x11\x1a\xa0\x8fâmÚÃË\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-16 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-17 04:00:00 UTC)" (scheduled at 2025-01-16 04:00:00+00:00)
|
||||
[2025-01-16 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-17 04:00:00 UTC)" executed successfully
|
||||
[2025-01-16 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-17 04:10:00 UTC)" (scheduled at 2025-01-16 04:10:00+00:00)
|
||||
[2025-01-16 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-17 04:10:00 UTC)" executed successfully
|
||||
[2025-01-16 05:48:19,167] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.55', 62142, 0, 0)) Invalid http version: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03cù\x14©J\x84i+\x1e%îÛ}´\x80¼UZ×_w\x82i\x91Î0_3üM/Þ V²·~öÒYÜ\x80Ü.u9\n'
|
||||
[2025-01-16 05:48:19,327] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.55', 62144, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x97 ©=\x13%\x83\x1eO\x9fM.~ÎÃ\x06Ì\x11\x17\t4O6\x83{U\x1cV¼?Z\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-16 15:44:32,464] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:18.117.147.107', 41574, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03L\x8cü\x15\x9f&!õÔ\x04\x10\x03$VÑïÉ¿\x9aÄSN\x89¶?â\x8bV¾Ó>®\x00\x00\x1aÀ/À+À\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00{\x01\x00\x00w\x03\x03L\x8cü\x15\x9f&!õÔ\x04\x10\x03$VÑïÉ¿\x9aÄSN\x89¶?â\x8bV¾Ó>®\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-16 17:20:54,727] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:91.220.163.70', 65424, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-01-16 19:04:54,197] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.95', 59966, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03ö\x01Ç]!\x94#Ë*$ö5Ò)w¡\x7fdöÁ\x9csnô\x84éå4¾\x06;e ë\x94=p\x8dþ\x98¥\x8c\x1c¸¯\x9d\x05\x06@öÙ¶Ã\x1b;ÛY\x06<\x9b·\x1d¼ë¤\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-16 19:04:54,473] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.95', 59972, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03â^-Ú!\x8dÝ:\x8e/\x91\x1bp`\x0cÞÛó©utJÍW\x7f\x05\x8f*õü\x14Ò\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-16 19:07:34,417] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=70, family=10, type=1, proto=0>: (from ('::ffff:91.220.163.70', 63717, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-01-17 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-18 04:00:00 UTC)" (scheduled at 2025-01-17 04:00:00+00:00)
|
||||
[2025-01-17 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-18 04:00:00 UTC)" executed successfully
|
||||
[2025-01-17 04:03:32,765] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:146.70.119.16', 48983, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00ä\x01\x00\x00à\x03\x03Èòø©'XºØõ'li¼Í®5é§J\x9b\x92È\x88æzã\x060|G+Á \x98N\x1e^µ²\x0bÿ%ì©w\x8b^\x11J\x91Aõ\xa0\n"
|
||||
[2025-01-17 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-18 04:10:00 UTC)" (scheduled at 2025-01-17 04:10:00+00:00)
|
||||
[2025-01-17 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-18 04:10:00 UTC)" executed successfully
|
||||
[2025-01-17 07:19:20,742] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5321660 object, fd=71, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.231', 43102, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x87ú³6ÎÊ\x8dà8 \x98;Ê×\x1f\x0fŸº\x1b`%Z\x8d@/_~ï\x9b¶ª \x84{6\x81\x10ÊÏ\x94²»©.'ýË&\x87rjðM\x1eç\x81¼gú¹6¶×æ\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n"
|
||||
[2025-01-17 12:38:09,749] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3eb00 object, fd=71, family=10, type=1, proto=0>: (from ('::ffff:172.169.109.27', 49522, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-18 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-19 04:00:00 UTC)" (scheduled at 2025-01-18 04:00:00+00:00)
|
||||
[2025-01-18 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-19 04:00:00 UTC)" executed successfully
|
||||
[2025-01-18 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-19 04:10:00 UTC)" (scheduled at 2025-01-18 04:10:00+00:00)
|
||||
[2025-01-18 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-19 04:10:00 UTC)" executed successfully
|
||||
[2025-01-18 08:37:20,264] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e90640 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.168', 59882, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x032\x08F<ªïH]\x06Ö£ùàÆ\x17è\x0f@\x08jÐÁ4»[0ÓäT¤\x9b\x05 ×ö&Jb\x13ÍYΨ¥ÍL{\x86\x02Ûñm¦[¸Ârò\x9f\x1c\x1f\x06Ìdõ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-18 08:37:20,624] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e906a0 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.168', 59894, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03h;b\x05\x9b`_â¦b¬ÒkóÆ"a\x9bA\\\x04á^[Þ¨Õ6϶÷Ç\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À'; path='À(À$À\x14À'; raw='\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03h;b\x05\x9b`_â¦b¬ÒkóÆ"a\x9bA\\\x04á^[Þ¨Õ6϶÷Ç\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-01-18 15:03:50,745] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3e980 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.234', 58950, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03rCñ\x06o\x80¡M/\x19zÊo§ÃÚ\x1e-)\x85Xü\x9b\x10dÓ9\x93²\x05e¹ dü\tÚâÖ¾Â\x0bÜewa\x8f&¢\x1e¦ù+%2\x07õò\x06³\n'
|
||||
[2025-01-18 23:01:54,473] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3ec80 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.255', 61770, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03dÀ\x0b´B\x16j\x1e\x87íñ`|\x0b\x7f\x02²¿qvHÀ\x97û»üÃˤþ\x8e: õ9µ\x84Úµ\x92ìw¨Z8õGätgº>×¢x\x0c#\x80Ĥ§*\x19~ß\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-18 23:01:54,634] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3ec80 object, fd=72, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.255', 61780, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x14ÃÜP6<¯\x80õà\x10\x15zK\x04\x19\x07'å\x97\x07/öý¦è4º]'.\x92\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x14ÃÜP6<¯\x80õà\x10\x15zK\x04\x19\x07'å\x97\x07/öý¦è4º]'.\x92\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-19 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-20 04:00:00 UTC)" (scheduled at 2025-01-19 04:00:00+00:00)
|
||||
[2025-01-19 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-20 04:00:00 UTC)" executed successfully
|
||||
[2025-01-19 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-20 04:10:00 UTC)" (scheduled at 2025-01-19 04:10:00+00:00)
|
||||
[2025-01-19 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-20 04:10:00 UTC)" executed successfully
|
||||
[2025-01-19 05:27:00,283] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3fb80 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:4.156.236.193', 44306, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-19 07:05:48,246] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3fb80 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:71.6.146.186', 37918, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ô\x01\x00\x00ð\x03\x03t\x00À¡\r,M£\x96Ü\x16Áe<eß\xa0ÿ÷\x9bÎé\x05ì/\x0f\x0cúË\x83¼´\x00\x00rÀ0À,À(À$À\x14À\n'
|
||||
[2025-01-19 17:34:58,420] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3fb80 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.89', 58051, 0, 0)) Invalid HTTP method: "\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ùJ\x0eª1\x1b³Ò¬ê:,â\x80ÿã\x9e9d\x12S\x90-\x82\x1dý\x8b':ð\x7f3 ¡q\x13aD1\x84Líb+rñZm\x10\x9bìý³Èß'ú\x99òS27\x10\x823\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n"
|
||||
[2025-01-19 17:42:05,795] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e915a0 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.157', 48267, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ó²?~!ÀÇÚÚFó¾$¿\x9e»Wó¢³tïtÙA¸Ãðß[õt \x0bÌ\x9bòûÛæÿ.çË1¼ÓÙCÔÓ¢ã\x0c\x98/\x98çf±,Ä\x10EF\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-19 17:42:06,636] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e916c0 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.148', 35887, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03ÍDò¡7øQlÖ>\x8cÐÑÄ\x02òý@¢F\x12\x02\x0bß/\'â\x92à\x992í BA:\x02øõÿ\x12ÞÊ\x8dá\x16Ó\x1d\x0eÍ=\x10ÇÃò\x12ß\x9f"þù«9=b\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-19 17:49:06,076] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e916c0 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.254', 32815, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03 Ý\x8d8FvÂ4ñ³À\x9b\x1b\x16\xad\x9aþ.\x87«6ê\x88iÓ÷\x9d³ÙÐÉË \x82tðʰ\x9f\x80/À¼Ðó+<x\x88äÂ<8\x03v+íß\x84¾\x07ð¬0¿\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-19 18:39:58,857] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e90f40 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:149.62.45.43', 34340, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x05¨\x01\x00\x05¤\x03\x03\x012ítÿÀ´\x99)\x97\x88¸qaR¥\x85\n'
|
||||
[2025-01-19 22:46:48,568] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e915a0 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.225', 58116, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x94"rà\x7fo\x9bÞ»+W´\x8e*\x0eéö\x8fê,¨¦Ãj\x1c¸\t;0àon Øþ¿y\x1b½\xa0[øe\x10\x8c\x89&\x0c¦¦»®ñ\x05hoöF\x02\x87rO\x87£Y\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-19 22:46:48,928] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e91d20 object, fd=73, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.225', 58118, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x030B\x02¢Ú\x147\x01\x11åS¢Ý\x08íTx»\x8eËâ\x97`#@Ó¡\x9fÄ?=Ú\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x030B\x02¢Ú\x147\x01\x11åS¢Ý\x08íTx»\x8eËâ\x97`#@Ó¡\x9fÄ?=Ú\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-20 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-21 04:00:00 UTC)" (scheduled at 2025-01-20 04:00:00+00:00)
|
||||
[2025-01-20 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-21 04:00:00 UTC)" executed successfully
|
||||
[2025-01-20 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-21 04:10:00 UTC)" (scheduled at 2025-01-20 04:10:00+00:00)
|
||||
[2025-01-20 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-21 04:10:00 UTC)" executed successfully
|
||||
[2025-01-20 19:20:33,003] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e90b80 object, fd=74, family=10, type=1, proto=0>: (from ('::ffff:104.40.91.102', 39650, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-20 19:23:22,783] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e929e0 object, fd=74, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.209', 60832, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Ö»ÄÙ3SÑ_\x13}ä±4Ò§V\x7fe[\x8c\x13þ]Y»ìûØî1dU b¶ÂúP|t\x9d\x94aÌ\x8fA\xad°¶\x80NCð÷©\x059\x83\x13\x18ó\x8d\x1c`?\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-20 19:23:23,095] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e90b80 object, fd=74, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.209', 60834, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ô\x0b¯Ï\x9fo[\x99\x84Êc°sù¦6¶5fê\x9e\x88\x14\x9e;wéä3c1/\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-21 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-22 04:00:00 UTC)" (scheduled at 2025-01-21 04:00:00+00:00)
|
||||
[2025-01-21 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-22 04:00:00 UTC)" executed successfully
|
||||
[2025-01-21 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-22 04:10:00 UTC)" (scheduled at 2025-01-21 04:10:00+00:00)
|
||||
[2025-01-21 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-22 04:10:00 UTC)" executed successfully
|
||||
[2025-01-21 08:12:36,894] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532d900 object, fd=75, family=10, type=1, proto=0>: (from ('::ffff:80.82.77.202', 60000, 0, 0)) Invalid HTTP method: '\x16\x03\x02\x01o\x01\x00\x01k\x03\x02RHÅ\x1a#÷:Nßâ´\x82/ÿ\tT\x9f§Äy°hÆ\x13\x8c¤\x1c="á\x1a\x98 \x84´,\x85¯nãY»bhlÿ(=\':©\x82ÙoÈ¢×\x93\x98´ï\x80å¹\x90\x00(À\n'
|
||||
[2025-01-21 16:10:30,092] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3d9c0 object, fd=75, family=10, type=1, proto=0>: (from ('::ffff:45.156.129.122', 35827, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03%\x01£#rÿV\x9eÍõØõÐ|ƹ*·,£Ëe7R\x9fböö%˰\x98\x00\x00BÀ\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03%\x01£#rÿV\x9eÍõØõÐ|ƹ*·,£Ëe7R\x9fböö%˰\x98\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-21 16:10:58,685] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532d900 object, fd=75, family=10, type=1, proto=0>: (from ('::ffff:45.156.129.121', 59469, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03^\x7fÕÅ¡$s\x7f&\x82a2åâ\x97Î\x01ÿ\x03h\x84x\x18S\x16?w\x91ïåñr\x00\x00BÀ\x11À\x07À\x13À'; path='À\x14À'; raw='\x16\x03\x01\x00\x9d\x01\x00\x00\x99\x03\x03^\x7fÕÅ¡$s\x7f&\x82a2åâ\x97Î\x01ÿ\x03h\x84x\x18S\x16?w\x91ïåñr\x00\x00BÀ\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-21 20:53:13,020] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e917e0 object, fd=75, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.90', 58950, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x037R\x80{\x1e¯/\x1cAt\x97\x00\x1a]Fß%\x99Ô\x9b\x9c§\x14äÛo\x90\x82[\x16\x89\x88 \x872.+\x83@2·\x0c.x·nÁè_y^^pC#á\x8dÉ\x8cZ\x9a\\È\x81Ï\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-21 20:53:13,298] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e92e60 object, fd=75, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.90', 58964, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x01K\x8c5á\x82ý°n8?<3¨\x04?&&\x83\x8bK,eÌ4þä\x8c\xad\n'
|
||||
[2025-01-22 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-23 04:00:00 UTC)" (scheduled at 2025-01-22 04:00:00+00:00)
|
||||
[2025-01-22 04:00:00,008] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-23 04:00:00 UTC)" executed successfully
|
||||
[2025-01-22 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-23 04:10:00 UTC)" (scheduled at 2025-01-22 04:10:00+00:00)
|
||||
[2025-01-22 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-23 04:10:00 UTC)" executed successfully
|
||||
[2025-01-22 10:29:58,551] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e92380 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:52.160.35.198', 40210, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-22 14:06:05,620] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dae60 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 65073, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-01-22 18:59:40,413] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da020 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 61625, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-01-22 21:36:44,671] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dae60 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.57', 60948, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03pQÌ\x11i=ƨ\x17cÀ\xa0\x87þæ\x02®\x81ð¶\x9elº{]ë\x93S\x19ëÜ \x92\x82鮡»x\x85\x14\x83\x14÷¨æVÿ±\x14¥]°\x04U:wê\x1dÝ\x04\x01Ûx\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-22 21:36:44,826] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dbee0 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.57', 60952, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03 LY\x92ºz\x81tÎ5\x82\x00¾ÿ\x17Á%\x9b\x93¹\x91W\x169ç/\x87>ª«\x05ö\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-22 21:39:28,429] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dae60 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 64961, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-01-23 01:34:34,260] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dbee0 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:213.32.32.82', 41319, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03op³2û§ðÐw<ëà4qc¿:\x1d)2E\x16k\x0bÙ-\x13GßùlÒ N®+@Oÿý\x14ÝÏÏ\x16\x87\x8fí"Ã××ðü<?MÁ/\x04\x05g\n'
|
||||
[2025-01-23 01:41:07,841] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dae60 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.157', 60699, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03k\x0e¥\x9e:óüAæB¤\x0c\x1e|\x19$~*ê\x8cí\x07£þî\x0f\x17\x01¦\x01<\x11 .=h bã\x82¤\x8b-\x14Ó¬\x8e`+n\x12b20\x81+\x1cs4ä¯!\x1dÌM\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-23 01:41:08,313] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dabc0 object, fd=77, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.147', 56829, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03°Ð\x94bç(«\x91O\x16¹\x89\x11ý\x15\x13\x9b¾0Î\x13²|\x13\x04¿\x12\raD3\x1c .\x1e\x8aÚÆ\x1epl\x7f\x8e?î%ɨ¨6\x13Ï\x02Óàý¸\x02·4\x87(\x8cj«\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-23 01:47:09,571] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dae60 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:54.38.100.152', 49069, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03üý\x9a\xa0,¤ªê\x84\x8b2\x7f©M\x17L© ./0\x94ú²\x10£\x13¦aÎÑ\x9e «\x8b\x0c\x86«\x1c\x94:3\x02âÊõX\x1b\x96Æ¡\x0e}\x84<Þ>«{ã\xad\x91#¢8\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-23 02:27:12,572] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cee0 object, fd=76, family=10, type=1, proto=0>: (from ('::ffff:45.142.193.19', 61604, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-01-23 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-24 04:00:00 UTC)" (scheduled at 2025-01-23 04:00:00+00:00)
|
||||
[2025-01-23 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-24 04:00:00 UTC)" executed successfully
|
||||
[2025-01-23 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-24 04:10:00 UTC)" (scheduled at 2025-01-23 04:10:00+00:00)
|
||||
[2025-01-23 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-24 04:10:00 UTC)" executed successfully
|
||||
[2025-01-23 10:16:59,827] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da020 object, fd=77, family=10, type=1, proto=0>: (from ('::ffff:18.216.255.128', 43384, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x03.½Ç\x9dª¤çò\x89\x85\x11¬¸¡s¯·µ\x14sYÙ\xa0È\x92ý\x99\x95ïw\x8bW\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-23 16:35:33,124] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532f340 object, fd=77, family=10, type=1, proto=0>: (from ('::ffff:165.154.6.224', 49618, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03¢[\x89tL¬aÅ\x81 äçy_Ñ\x17QæD\x9eQq·}\x16\x9fç\x82cǯç Dr)ôHÀ¾kQð¯\x8b\x84\x86Üñ\x81A\x01\x7f \x9b$¶Í¤\xadØ\rT\x87\x88\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-23 16:35:33,511] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3c6a0 object, fd=77, family=10, type=1, proto=0>: (from ('::ffff:165.154.6.224', 49664, 0, 0)) Expected GET method; Got command='t3'; path='12.1.2'; raw='t3 12.1.2\n'
|
||||
[2025-01-24 02:32:34,134] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed532f340 object, fd=77, family=10, type=1, proto=0>: (from ('::ffff:172.170.166.238', 60374, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-24 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-25 04:00:00 UTC)" (scheduled at 2025-01-24 04:00:00+00:00)
|
||||
[2025-01-24 04:00:00,000] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-25 04:00:00 UTC)" executed successfully
|
||||
[2025-01-24 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-25 04:10:00 UTC)" (scheduled at 2025-01-24 04:10:00+00:00)
|
||||
[2025-01-24 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-25 04:10:00 UTC)" executed successfully
|
||||
[2025-01-24 05:48:18,558] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cbe0 object, fd=78, family=10, type=1, proto=0>: (from ('::ffff:47.254.204.49', 26404, 0, 0)) Invalid http version: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x06²ù¼\x99iÀYûøºe-\x83Ud]\x0e\x8d·b8´gÆÝ9dZ8f gÁ\x81i³öò˰©\x19NÖ½\x95g|püé<Z¡\x90T·é¥8'O;\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-01-24 09:14:22,342] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb45e0 object, fd=78, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.170', 64260, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x037ïtL;n\x0bz1ÛEZ!\x02=r~$\x11\x91\x8b_¥ÿlJ\t\x12©ÃÒ\x1c -´\x13~/Ï#BéÖ}"e"G@¡ç¥Lòº\x17fn8åxû×M.\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-24 09:14:22,654] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb4580 object, fd=78, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.170', 64266, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03è\x1bö[³bU%QæQ¡}>\x00ÔdÝ\x9a¯'_8\x16¢\x17\x022Í_¾\x1c\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-24 12:34:45,840] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cb20 object, fd=78, family=10, type=1, proto=0>: (from ('::ffff:167.99.149.47', 42238, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-01-24 22:59:05,893] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320c40 object, fd=78, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.255', 61794, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x90Ä\x8eéJy\x0cÀ$\x16±1äm°óÁI[s¹º0©D\x0e\x92\x85;®\x94\x15 »Gh"º¤Ó7bl¢ìÛ\x03\x91å0ø\x82¬Wó¼å*Úum\x89{K³\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-24 22:59:06,203] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3d300 object, fd=78, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.255', 61808, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x0382±èØ^\x10Ác\x14¹\x14t%¿8Ì.4Â\x95\x16\x9d?9ëÝm\x00\x06\x89$\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x0382±èØ^\x10Ác\x14¹\x14t%¿8Ì.4Â\x95\x16\x9d?9ëÝm\x00\x06\x89$\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-25 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-26 04:00:00 UTC)" (scheduled at 2025-01-25 04:00:00+00:00)
|
||||
[2025-01-25 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-26 04:00:00 UTC)" executed successfully
|
||||
[2025-01-25 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-26 04:10:00 UTC)" (scheduled at 2025-01-25 04:10:00+00:00)
|
||||
[2025-01-25 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-26 04:10:00 UTC)" executed successfully
|
||||
[2025-01-25 19:03:20,202] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cbe0 object, fd=79, family=10, type=1, proto=0>: (from ('::ffff:4.156.237.243', 42726, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-25 21:55:47,530] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cbe0 object, fd=79, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.224', 65294, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\rØàETlg=lú63¿Úå@Ê\x8f[¬\r\x08§4ñÙ¥\xa0\x85o\x13É Ï\x0clDx\x87\x84ò\x17ÞÍq\x14\x7f\x060ÀIî"}\x1c«bÖ~¸×\x17Q{\x87\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-25 21:55:47,889] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53db9a0 object, fd=79, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.224', 65310, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03V\x8cÅÆ\x86\x929½\x0cW[ÉÿµO¢%S\\H\x84\x8aÆM\x87úÈiÀ$$\\\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-26 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-27 04:00:00 UTC)" (scheduled at 2025-01-26 04:00:00+00:00)
|
||||
[2025-01-26 04:00:00,002] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-27 04:00:00 UTC)" executed successfully
|
||||
[2025-01-26 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-27 04:10:00 UTC)" (scheduled at 2025-01-26 04:10:00+00:00)
|
||||
[2025-01-26 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-27 04:10:00 UTC)" executed successfully
|
||||
[2025-01-26 18:53:10,507] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cbe0 object, fd=80, family=10, type=1, proto=0>: (from ('::ffff:51.91.174.245', 49903, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Q\r\x9aQj\x9dÚN{0!ö\x8a\x82·q\x17;®\x9c7\x9c³Ñ±\x8d\x1f\x1cô)£` cô§\x11D¯®pÜÛ\x0ek² \x13kÒj(ñ0ð\x19s*r>à:1\x00\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-26 18:59:05,585] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cbe0 object, fd=80, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.240', 60997, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03÷\r·0ji\x81\x06Û\x8døIËkÍâ\x9dé\x9cFó\x13üà=L?\x83\x12³\x02\x8b Ù\x0foìGäùº´,Ó\x91O±³ Õ0°Hû\x89\x92.¥@&6\x8cb3¤\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-26 18:59:06,333] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3cbe0 object, fd=81, family=10, type=1, proto=0>: (from ('::ffff:137.74.181.244', 48541, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x1bås\x1dÔ_ÎÿÆå/\x82ÿ1ê1õºÑÃÔ,à\x01Ó(«°"ý\x063 (¿\x92üç\x99C\x1e¯s-FÉa¹ó"#ò\x14\x02û\x81N\x8d!0\x95^àÎ\x9c\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-26 19:05:07,629] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53dabc0 object, fd=80, family=10, type=1, proto=0>: (from ('::ffff:137.74.239.154', 39061, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03\x03Øo»ý\x0cü\x9dB\x08ÍaC\x9e¦®1\x13\x88\x12ôò\x10à\x98Ñ`ÿÒ¸´\x83 á/m\x0cÀ\x0b\x1b½ÜÒ\x12%ð1\x03Þã»\x7f&\xa0¼·\x13àæ æÑ6íN\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-27 00:26:35,845] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb6260 object, fd=81, family=10, type=1, proto=0>: (from ('::ffff:152.32.149.246', 33216, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01\x17\x01\x00\x01\x13\x03\x03!\x91ù\x90\x9cOÞà\x8dÿ£\x1bß5,ô¡$\x1f®çMN²©\x13Üï\x8b\x99\x89* 4$Ae·\x99\x14\x8fàÆ95þ"\x02Ø3E¡\x90\x06\x16\x03a1É·\x84x\x9cVÎ\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
[2025-01-27 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-28 04:00:00 UTC)" (scheduled at 2025-01-27 04:00:00+00:00)
|
||||
[2025-01-27 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-28 04:00:00 UTC)" executed successfully
|
||||
[2025-01-27 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-28 04:10:00 UTC)" (scheduled at 2025-01-27 04:10:00+00:00)
|
||||
[2025-01-27 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-28 04:10:00 UTC)" executed successfully
|
||||
[2025-01-27 06:27:13,073] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3c460 object, fd=82, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.72', 63288, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03I\x9d§\x01Æê\x8ebkv¯ÿ\x1bð\x01\x83Uit\x82\x8eÁ\x98½kï\x99\t®Ì\x0c\x04 \x13§4\x88ÌfätkZpÀFS 'e\x8c³®\x87Wìi½ÒÊOþ7\x0bv\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-01-27 06:27:13,237] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3c460 object, fd=82, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.72', 63300, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03*\x04\x05èsçb#ïM)\x84þdåG b#í\x0cê\x9d-`¹×R\x06\x8b\x02\x0c\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-27 10:04:48,490] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb64a0 object, fd=82, family=10, type=1, proto=0>: (from ('::ffff:52.234.238.238', 48128, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-28 03:19:22,768] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb52a0 object, fd=82, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.37', 64000, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x0fçÌ)qe\tñöC\x1dh\x94\x91\x86Ϭ\x1d7\x12ó\x90ë=z¸\x93Î\x9bá@\x92 Ù`ÁÛoVpVØ\x07\x87\x02'\x94B©!tãC®\r¯yíÑô\x7f\x93&}\x7f\x00&À+À/À,À0̨̩À\tÀ\x13À\n"
|
||||
[2025-01-28 03:19:22,933] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb64a0 object, fd=82, family=10, type=1, proto=0>: (from ('::ffff:147.185.132.37', 64012, 0, 0)) Invalid http version: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\x0b\x02Á\x02×R²\x94\x9fÇNò\x8f~*É$²²y\x017"mÆ\x91$¯~íÝ%\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À\'À#À\x13À\tÀ(À$À\x14À\n'
|
||||
[2025-01-28 04:00:00,004] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-29 04:00:00 UTC)" (scheduled at 2025-01-28 04:00:00+00:00)
|
||||
[2025-01-28 04:00:00,024] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-29 04:00:00 UTC)" executed successfully
|
||||
[2025-01-28 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-29 04:10:00 UTC)" (scheduled at 2025-01-28 04:10:00+00:00)
|
||||
[2025-01-28 04:10:00,001] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-29 04:10:00 UTC)" executed successfully
|
||||
[2025-01-28 11:23:41,900] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb5de0 object, fd=83, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 59954, 0, 0)) Invalid HTTP method: '\r\n'
|
||||
[2025-01-28 11:23:49,116] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed53da140 object, fd=83, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 60764, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03ÿ±\x05D\x8bDC\x88'; path=':\x84\x18nª¶'; raw='\x16\x03\x01\x02\x00\x01\x00\x01ü\x03\x03ÿ±\x05D\x8bDC\x88\r:\x84\x18nª¶\n'
|
||||
[2025-01-28 11:23:52,637] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7520 object, fd=96, family=10, type=1, proto=0>: (from ('::ffff:139.144.52.241', 59996, 0, 0)) Invalid HTTP method: '\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbbb0100000001'
|
||||
[2025-01-29 00:54:27,624] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320f40 object, fd=83, family=10, type=1, proto=0>: (from ('::ffff:172.202.251.250', 36626, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-29 03:45:29,991] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb5de0 object, fd=83, family=10, type=1, proto=0>: (from ('::ffff:42.200.142.163', 43532, 0, 0)) Invalid HTTP method: '\x16\x03\x00\x02\x00\x01\x00\x01ü\x03\x03úØ7¦\x0bjð÷*]\x11\x15\x1b\x10\x12\x10\x1fà=\x7fX\x17\x8a\x9aE[ø°\x8aØ5t A¨õòpÂFS\r+\x0f\x97¹Æ¿\x99[\x9dr\x82»9!1,\x99\x95%ì%ÕK\x00"ºº\x13\x01\x13\x02\x13\x03À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00\n'
|
||||
[2025-01-29 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-30 04:00:00 UTC)" (scheduled at 2025-01-29 04:00:00+00:00)
|
||||
[2025-01-29 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-30 04:00:00 UTC)" executed successfully
|
||||
[2025-01-29 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-30 04:10:00 UTC)" (scheduled at 2025-01-29 04:10:00+00:00)
|
||||
[2025-01-29 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-30 04:10:00 UTC)" executed successfully
|
||||
[2025-01-29 09:19:15,036] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5323b20 object, fd=84, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.248', 59768, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03á»|̽7Û×\x9c\x06ÛA\x88Öñ¯`R\x87AL\x9a-È9\x00\x0f\x06d\x91Õ\x83 ¿bí{)X\x8aãbB]ü"}ÚÈ\x1a0Bùn@?\x90]ýõ\x9d78\x1e@\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-29 09:19:15,393] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320f40 object, fd=84, family=10, type=1, proto=0>: (from ('::ffff:205.210.31.248', 59772, 0, 0)) Invalid http version: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03ªT,!D\x80\x9eÖ\x99õ\x98\x81\x0fs\x0e\\]m/?5\x0cÑYÏïñO\x84LX\x9e\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-29 22:46:25,951] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5323b20 object, fd=84, family=10, type=1, proto=0>: (from ('::ffff:71.6.134.234', 38806, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03Dåÿ\x16¹ÍÀ0}¼m¿ia\x7f}1Ð\x8f°\x08Du\x8dZÓB\x85L]\x15( X\x94\x99ïbêý_Ä´Ô\x01Þ\x1a¹qM_\x9eÓó\x91Ó³3mÙÁ~N\x83Ö\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-01-30 02:03:49,651] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb7b20 object, fd=84, family=10, type=1, proto=0>: (from ('::ffff:54.38.100.144', 57089, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Á,\x9d0<±28K\x17Ay¦¾úrª(\x94´³1ïô`Áñ\x07°\xa0\x86á \x87\x15!B\x1f\x9dòN\x0e:Ö\x17\x02ëj:}1þ³\n'
|
||||
[2025-01-30 02:10:11,797] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4eb51e0 object, fd=85, family=10, type=1, proto=0>: (from ('::ffff:5.135.238.156', 43337, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03Á\x9c×\x81Ð\x0f©¢K.r\x8f=3£ûÇ\x0e\x8e\x16\n'
|
||||
[2025-01-30 02:10:13,472] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed5320f40 object, fd=84, family=10, type=1, proto=0>: (from ('::ffff:5.135.238.149', 57921, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03¼:±?ßÏËOAòÝ2Û\x03ÛM\x13îä?mn\x19lÎßÃ\x1a\x16Á\x0e\x1c )\xadú\tÚ&½\x12l\xadº«\x82Æ\x90\x87MÑ¡\x9am\x1a=\x12®<\xad\x9fa\x8e\xadË\x00\x8a\x00\x16\x003\x00gÀ\x9eÀ¢\x00\x9e\x009\x00kÀ\x9fÀ£\x00\x9f\x00E\x00¾\x00\x88\x00Ä\x00\x9aÀ\x08À\tÀ#À¬À®À+À\n'
|
||||
[2025-01-30 02:16:11,759] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0ee0 object, fd=84, family=10, type=1, proto=0>: (from ('::ffff:51.178.236.254', 38259, 0, 0)) Invalid HTTP method: '\x16\x03\x03\x01¦\x01\x00\x01¢\x03\x03!³\x02\x1d\xadý\x11aa¬\x1b&Áð,\t\x0f±½pÉ"ñ\x8b\x07-+\x0b@Ý»\x0c Ý\x132J/±ÿÐ\x1dBd³B\n'
|
||||
[2025-01-30 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-31 04:00:00 UTC)" (scheduled at 2025-01-30 04:00:00+00:00)
|
||||
[2025-01-30 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-01-31 04:00:00 UTC)" executed successfully
|
||||
[2025-01-30 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-31 04:10:00 UTC)" (scheduled at 2025-01-30 04:10:00+00:00)
|
||||
[2025-01-30 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-01-31 04:10:00 UTC)" executed successfully
|
||||
[2025-01-30 05:48:58,969] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0ca0 object, fd=85, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.23', 57664, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03i\x1c%ë\x8bºÊÁDvÇ\x8aµÑ\x8d&(θ"u\x9fSã´Né\x03\x18h·w $\x9bd2Îvõ\x99NwLå|.M~7\x940[#\x02ý8n\xa0E \x15·-\x0b\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-30 05:48:59,240] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3ce80 object, fd=85, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.23', 57674, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03«*\x9b\x927Äg\x89^Ú\x8d\n'
|
||||
[2025-01-30 08:40:17,936] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4e3ce80 object, fd=85, family=10, type=1, proto=0>: (from ('::ffff:194.164.107.5', 37946, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x97æ\x86Q\xa0\r\x0cK8WL\x84\x1a@L\x89U\x8dpìÓÑ3®¸z\x94oëÀ:Ý \x9c\x10ÙÜû\x9bo÷\x08\x02\x90æê\x80{MÉ¥?\x9f\x11\x91T\x12\x8b®v_SëG\x0b\x00&̨̩À/À0À+À,À\x13À\tÀ\x14À\n'
|
||||
[2025-01-30 13:56:05,400] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee1f00 object, fd=85, family=10, type=1, proto=0>: (from ('::ffff:18.222.8.29', 59974, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00{\x01\x00\x00w\x03\x038§\x82\xad\xa0\x9b\x80C+\x98\x83 ÷Iz\x9b\xad\x93Y\x92\x94\\\t\x05<Q¢õìQm\\\x00\x00\x1aÀ/À+À\x11À\x07À\x13À\tÀ\x14À\n'
|
||||
[2025-01-30 15:46:13,715] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0700 object, fd=85, family=10, type=1, proto=0>: (from ('::ffff:172.169.111.13', 53318, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-01-31 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-01 04:00:00 UTC)" (scheduled at 2025-01-31 04:00:00+00:00)
|
||||
[2025-01-31 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-01 04:00:00 UTC)" executed successfully
|
||||
[2025-01-31 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-01 04:10:00 UTC)" (scheduled at 2025-01-31 04:10:00+00:00)
|
||||
[2025-01-31 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-01 04:10:00 UTC)" executed successfully
|
||||
[2025-01-31 05:41:35,598] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0ac0 object, fd=86, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.214', 57386, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03\x96-\x12±\x85u8]7ã}\x01kö7´ìnóL$SoÆd\x023B\x8b\x16r\x02 C\x01óÿAÒ\x87!\x04=Ò!Ìïyöi\x1d,\x86§\x82í\x90BvLÿ\x825ÐÏ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-01-31 05:41:35,910] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2440 object, fd=86, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.214', 57390, 0, 0)) Expected GET method; Got command="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03=\x9a¹öF|®\x14´\x8f4Só{{\x1aùÏrRksSs»NËOãî`º\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À"; path='À(À$À\x14À'; raw="\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03=\x9a¹öF|®\x14´\x8f4Só{{\x1aùÏrRksSs»NËOãî`º\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-01-31 08:42:47,307] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee23e0 object, fd=86, family=10, type=1, proto=0>: (from ('::ffff:185.224.128.88', 36634, 0, 0)) Expected GET method; Got command='\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03I\x00Q\x14$\x1a\x07\x151Õ7zAÙ¨·¦\x8a\x00¤f¯'; path="yª2z')\x19U\x0e\x00\x00\x82À0À,À(À$À\x14À"; raw="\x16\x03\x01\x00ò\x01\x00\x00î\x03\x03I\x00Q\x14$\x1a\x07\x151Õ7zAÙ¨·¦\x8a\x00¤f¯\x1dyª2z')\x19U\x0e\x00\x00\x82À0À,À(À$À\x14À\n"
|
||||
[2025-01-31 10:04:46,399] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee0ac0 object, fd=86, family=10, type=1, proto=0>: (from ('::ffff:31.43.185.66', 63340, 0, 0)) Expected GET method; Got command='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:'; path='mstshash=Administr'; raw='\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie: mstshash=Administr\r\n'
|
||||
[2025-02-01 04:00:00,001] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-02 04:00:00 UTC)" (scheduled at 2025-02-01 04:00:00+00:00)
|
||||
[2025-02-01 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-02 04:00:00 UTC)" executed successfully
|
||||
[2025-02-01 04:10:00,001] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-02 04:10:00 UTC)" (scheduled at 2025-02-01 04:10:00+00:00)
|
||||
[2025-02-01 04:10:00,002] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-02 04:10:00 UTC)" executed successfully
|
||||
[2025-02-01 07:08:43,806] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2bc0 object, fd=88, family=10, type=1, proto=0>: (from ('::ffff:48.216.196.168', 47312, 0, 0)) Invalid HTTP method: 'MGLNDD_68.111.69.243_8083\n'
|
||||
[2025-02-01 10:53:23,946] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2bc0 object, fd=88, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.215', 64496, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00î\x01\x00\x00ê\x03\x03$Z\x80º\\(\x9c\x8eÒªÆ÷3xüÃ3Pþ>XX©O6G±y\x96Þ?± m(Ôì\x01\x89ö\x11[h\x9em¸È\x86_6\x05½Ë.#"ãy\x1c\x83¿\x9aòiÂ\x00&À+À/À,À0̨̩À\tÀ\x13À\n'
|
||||
[2025-02-01 10:53:24,258] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee00a0 object, fd=88, family=10, type=1, proto=0>: (from ('::ffff:198.235.24.215', 64504, 0, 0)) Invalid HTTP method: "\x16\x03\x01\x00Ê\x01\x00\x00Æ\x03\x03\tß\ry¯'»ûTÔu\x0f|I\x94\x16r:W\x05áµ\x1bÐZr\x18\rIÐ\x9br\x00\x00hÌ\x14Ì\x13À/À+À0À,À\x11À\x07À'À#À\x13À\tÀ(À$À\x14À\n"
|
||||
[2025-02-01 11:00:34,591] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2c20 object, fd=88, family=10, type=1, proto=0>: (from ('::ffff:185.224.128.88', 35680, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x00ò\x01\x00\x00î\x03\x034+¼\x1b³¼ú \x02üýµe3\tõd\x1fxoþ©×±éÁ\x17\x92@NCì\x00\x00\x82À0À,À(À$À\x14À\n'
|
||||
[2025-02-01 16:35:54,344] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee2d40 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:204.76.203.71', 49498, 0, 0)) Invalid HTTP method: '\x05\x01\x00'
|
||||
[2025-02-01 16:35:54,344] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee00a0 object, fd=88, family=10, type=1, proto=0>: (from ('::ffff:204.76.203.71', 49508, 0, 0)) Invalid HTTP method: '\x04\x01\x01»\x00\x00\x00\x01proxychecker\x00api.ip.pn\x00'
|
||||
[2025-02-02 04:00:00,000] INFO {apscheduler.executors.default:123} Running job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-03 04:00:00 UTC)" (scheduled at 2025-02-02 04:00:00+00:00)
|
||||
[2025-02-02 04:00:00,001] INFO {apscheduler.executors.default:144} Job "delete temp (trigger: cron[hour='4'], next run at: 2025-02-03 04:00:00 UTC)" executed successfully
|
||||
[2025-02-02 04:10:00,000] INFO {apscheduler.executors.default:123} Running job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-03 04:10:00 UTC)" (scheduled at 2025-02-02 04:10:00+00:00)
|
||||
[2025-02-02 04:10:00,000] INFO {apscheduler.executors.default:144} Job "end scheduled task (trigger: cron[hour='4', minute='10'], next run at: 2025-02-03 04:10:00 UTC)" executed successfully
|
||||
[2025-02-02 06:41:13,627] ERROR {cps.server:1349} <gevent._socket3.socket at 0x7f2ed4ee38e0 object, fd=89, family=10, type=1, proto=0>: (from ('::ffff:27.115.124.97', 1258, 0, 0)) Invalid HTTP method: '\x16\x03\x01\x01=\x01\x00\x019\x03\x03Qæ\x10Ê)«Üÿ²Õ\x87ÎC\x86{<Ñ\x11\x0c¦æ·ã1@\x9bÐÙF¯·W ¢±éª«\x92L¦\x0f\x03è?Ï\x05g\x05ò6c\x12\x1c\t³7bì\x98.Æ,\x16a\x004̨̩À/À0À+À,À\t\x00\x9ę̪\x003\x00=\x00\x16À\n'
|
||||
1
conf/calibre-web/client_secrets.json
Normal file
1
conf/calibre-web/client_secrets.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
BIN
conf/calibre-web/gdrive.db
Normal file
BIN
conf/calibre-web/gdrive.db
Normal file
Binary file not shown.
44
conf/homepage/bookmarks.yaml
Executable file
44
conf/homepage/bookmarks.yaml
Executable file
@@ -0,0 +1,44 @@
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/latest/configs/bookmarks
|
||||
|
||||
- UltraSeedbox:
|
||||
- FileZilla:
|
||||
- abbr: FZ
|
||||
icon: si-filezilla
|
||||
href: http://10.0.50.51:3000/
|
||||
description: FTP Client
|
||||
- Control Panel:
|
||||
- abbr: CP
|
||||
icon: si-bittorrent
|
||||
href: http://cp.ultra.cc/
|
||||
description: Ultraseedbox Control Panel
|
||||
- ruTorrent:
|
||||
- abbr: rt
|
||||
icon: si-bittorrent
|
||||
href: https://lkraven.hebe.usbx.me/rutorrent/
|
||||
description: ruTorrent Client
|
||||
- Sonarr:
|
||||
- abbr: sr
|
||||
icon: si-sonarr
|
||||
href: https://lkraven.hebe.usbx.me/sonarr/
|
||||
description: TV Shows
|
||||
- Radarr:
|
||||
- abbr: rr
|
||||
icon: si-radarr
|
||||
href: https://lkraven.hebe.usbx.me/radarr/
|
||||
description: Movies
|
||||
- Bazarr:
|
||||
- abbr: br
|
||||
icon: mdi-subtitles
|
||||
href: https://lkraven.hebe.usbx.me/bazarr/
|
||||
description: Subtitles
|
||||
- Sabnzbd:
|
||||
- abbr: nz
|
||||
icon: mdi-newspaper
|
||||
href: https://lkraven.hebe.usbx.me/sabnzbd
|
||||
description: Newz Client
|
||||
- Seedsync:
|
||||
- abbr: sy
|
||||
icon: mdi-download-box
|
||||
href: http://10.0.50.51:8800/dashboard
|
||||
description: Sync Client
|
||||
0
conf/traefik-ana/config/acme.json → conf/homepage/custom.css
Normal file → Executable file
0
conf/traefik-ana/config/acme.json → conf/homepage/custom.css
Normal file → Executable file
0
conf/homepage/custom.js
Executable file
0
conf/homepage/custom.js
Executable file
38
conf/homepage/docker.yaml
Executable file
38
conf/homepage/docker.yaml
Executable file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/latest/configs/docker/
|
||||
|
||||
# my-docker:
|
||||
# host: 127.0.0.1
|
||||
# port: 2375
|
||||
|
||||
#my-docker:
|
||||
# socket: /var/run/docker.sock
|
||||
|
||||
#esh-tinyserver:
|
||||
# host: 172.18.0.1
|
||||
# port: 2375
|
||||
|
||||
#esh-tinynas:
|
||||
# host: 10.0.50.50
|
||||
# port: 2375
|
||||
|
||||
esh-vm-docker:
|
||||
host: 10.0.50.45
|
||||
port: 2375
|
||||
|
||||
#qnap-nas-docker:
|
||||
# host: 10.0.50.50
|
||||
# port: 2376
|
||||
# tls:
|
||||
# keyFile: nas-tls/key.pem
|
||||
# caFile: nas-tls/ca.pem
|
||||
# certFile: nas-tls/cert.pem
|
||||
|
||||
ana-pfi-docker:
|
||||
host: 10.250.50.70
|
||||
port: 2375
|
||||
|
||||
nh3-pfi-docker:
|
||||
host: 10.100.50.40
|
||||
port: 2375
|
||||
BIN
conf/homepage/imgs/Thumbs.db
Executable file
BIN
conf/homepage/imgs/Thumbs.db
Executable file
Binary file not shown.
BIN
conf/homepage/imgs/bg1.jpg
Executable file
BIN
conf/homepage/imgs/bg1.jpg
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
2
conf/homepage/kubernetes.yaml
Executable file
2
conf/homepage/kubernetes.yaml
Executable file
@@ -0,0 +1,2 @@
|
||||
---
|
||||
# sample kubernetes config
|
||||
46325
conf/homepage/logs/homepage.log
Executable file
46325
conf/homepage/logs/homepage.log
Executable file
File diff suppressed because one or more lines are too long
35
conf/homepage/nas-tls/ca.pem
Executable file
35
conf/homepage/nas-tls/ca.pem
Executable file
@@ -0,0 +1,35 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIGDTCCA/WgAwIBAgIUegptAglGg0Y7zWeeNOBexDBps9UwDQYJKoZIhvcNAQEL
|
||||
BQAwWjEaMBgGA1UEAxMRQ29udGFpbmVyIFN0YXRpb24xDTALBgNVBAoTBFFOQVAx
|
||||
DzANBgNVBAgTBlRhaXBlaTEPMA0GA1UEBxMGVGFpcGVpMQswCQYDVQQGEwJUVzAe
|
||||
Fw0yNDA0MTAwNTE2NTNaFw0yNzA0MTAwNTE2NTNaMFoxGjAYBgNVBAMTEUNvbnRh
|
||||
aW5lciBTdGF0aW9uMQ0wCwYDVQQKEwRRTkFQMQ8wDQYDVQQIEwZUYWlwZWkxDzAN
|
||||
BgNVBAcTBlRhaXBlaTELMAkGA1UEBhMCVFcwggIiMA0GCSqGSIb3DQEBAQUAA4IC
|
||||
DwAwggIKAoICAQC+M0xd6vUUJg40m2BCC/bt8hCjo5XWmftPK/PMfPdhVAkrQgaJ
|
||||
D+dGgEXSfgxurpdtbv0gJUPOd1+rCoSblGOcUsdMxofnx1NnEBBwUnmdr1ro/SqO
|
||||
zP/Q8sasGim8w9ZD3fl3N3c1v8DD42sQ/m6FxWi7nAYV2QVg+pzsE51OdIAthA2A
|
||||
oRhnvpRVXLUJktcajmgzHIc+LDT+ub6KWyW+uJhND5aeNnzK30g+AeXqPwEE0Xgs
|
||||
vj+178uy4Vd5fnGKN77zGG8mxKtkgyT1pjk0N5SH9cpWC3hDMM+/x/dZzjdUuqKs
|
||||
vvpS+Lk5ISMgrlzPoZxDU31q4ml/DE/1oVA9k+ljz7xwVxjWfL0IQFVT7Vr6IwdL
|
||||
8BcdDXnXZqztAghYbu60orj06tUxV1gaH4Gj2Oc9ZaXj71TZT+k7OwNuFhbTn39Z
|
||||
TJmTZ3R7yoGHk1B5WxNyPZPSl2bu1M9bbPfiyd3imfYTBewZAOgNRF3Z86F3AfF1
|
||||
4vNqMvJ+F05bmKhRnvqY1Y5R9Ck4gSCI7OxzOSyCZFLXnQqBS7pzAQC+FqAM0wEW
|
||||
jvPJyTtgfXEOS5BiM3VexvQ+SKekkdVx+miHTSxebHvuhPz/Vg2qtEaM9Urssbme
|
||||
5SwHisyi8SNMebQxLiOhzTZ9+Jcf0HFMqPykM21rRzhH3rkxFB+kTD8EpwIDAQAB
|
||||
o4HKMIHHMB0GA1UdDgQWBBRISO1k16KkLS1kZBzjFPtvNpX+RjCBlwYDVR0jBIGP
|
||||
MIGMgBRISO1k16KkLS1kZBzjFPtvNpX+RqFepFwwWjEaMBgGA1UEAxMRQ29udGFp
|
||||
bmVyIFN0YXRpb24xDTALBgNVBAoTBFFOQVAxDzANBgNVBAgTBlRhaXBlaTEPMA0G
|
||||
A1UEBxMGVGFpcGVpMQswCQYDVQQGEwJUV4IUegptAglGg0Y7zWeeNOBexDBps9Uw
|
||||
DAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAef5iXOSd1HKU31dhPKnZ
|
||||
C7trqG0sHkxW3rVsKo01GI8Zt3C1mG3Dl5vLjvvfa6Vt1C9RWxqusf3gi7XgwPhz
|
||||
a9G02h8/mSVBVG/NVWLewbjxdxUIu99zvNwtFBmmTmUrB203hFppiNu+dsH1Sm84
|
||||
YT1ctLmpGciyUR5Mt95xxPv+nzCtqfcrsTGD1QlRrGbmJQEddWn0ZKEaV57UrnAs
|
||||
6M1H3J0faJmXZJba+ScFEZyqQeWoFC9V7nNnp/W+5UlBsIZKBNBAPRpvA11k3GlZ
|
||||
wg5X2DsdIh0E5YqEJT93njEa9QGEVefdcrda4JbO7oWGrQ59Lu4Ei/wpp7QuQh+D
|
||||
Lk8PbbMWEDLuJ5gfRrqkh6GTFlw5I9k9TGZsVDlZ7R2R4GouGdGfTy032uawUEg6
|
||||
1hirsknRCPoC+G+6ItUlE+EDc9B2GElnKWFp/Z4DN+RQFnkq3flgvHpW/hTSNAMW
|
||||
cMovQhQyWj5rG4sTHuUZoPcoGJKEp2zB2M3tKio7OlaLprWVa+Nf2sL4h5kLu8Wd
|
||||
jwrtC/f5Yd6puGW38U68qX7n+1Go+2xmDzJHWWw3m0ak3xnmblgUNRYY/LeLVVc5
|
||||
DTxCV1wuPU994hgMUf3upHpoPHLF5PvH76A+Rmd/ePXRMZsS3xTbg4mp5ZYXROdX
|
||||
b5s/tfYuKsDrFcimnvXu9K0=
|
||||
-----END CERTIFICATE-----
|
||||
30
conf/homepage/nas-tls/cert.pem
Executable file
30
conf/homepage/nas-tls/cert.pem
Executable file
@@ -0,0 +1,30 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIFHTCCAwWgAwIBAgIUbjt8eDJo2sdS+K1LzvIHO4esE90wDQYJKoZIhvcNAQEL
|
||||
BQAwWjEaMBgGA1UEAxMRQ29udGFpbmVyIFN0YXRpb24xDTALBgNVBAoTBFFOQVAx
|
||||
DzANBgNVBAgTBlRhaXBlaTEPMA0GA1UEBxMGVGFpcGVpMQswCQYDVQQGEwJUVzAe
|
||||
Fw0yNDA0MTAwNTE2NTRaFw0yNTA0MTAwNTE2NTRaMBExDzANBgNVBAMTBmNsaWVu
|
||||
dDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANf7Op/lAdbdC959vPO1
|
||||
B9CiRkBDu0MUNPRCfCk0OdMXMRt1tRcxAiGUIV9HFO1Av/SzRUcoG4etmDQLfq9w
|
||||
L5bPfsSBh2uf7ZNK8Vghyw6iAB/DQif32RA33ziNBbxeJMYiIBft31FgvjLDvdjb
|
||||
mmvp/fPhsKflIh1yOFYZUCutvlZCbbI43PsKBDWkkRFfQpVbvABIhfFxK8rNDK9p
|
||||
W7CDNcbpGtr5LFXoBd2RxR8L67boZdeYh1dyQhGFXsD2PEfHba6VqKs5XlFJHCDz
|
||||
EdIT9R6ykOhpWMCwjhMeOwGvPZjVTpdeyDWDw6PlLO5GahNHfjuy8XeNhR5Zby3r
|
||||
pQLWdo5yduXGT87XTNnq/CdXbML2/r3Bk6TSmKJAB8kdvZ2aprh0iWBRf8lTJeaF
|
||||
u/pzHVxCYd79Wk4ebMt+eMmcOz2yGtcqO/wkmjhuS7DCKJa5AJcxtQ9kCMUQU0DN
|
||||
GaLGWeLHmZpywzJvgzA32JNviKqT8UisjW5Q8msrZtPla9YEmtWB0910XWNtcARe
|
||||
B7FII9WA1D4Gr7tmHs+gW5CzjXtAPwt3XMD491t8DgqBVaT6/D+AijumtbN2s8r/
|
||||
Ebu75ZuW8iHt7/5pTk3Gd3rrSwR38BknVieKFXXPjTViCtfexn30uXy9B77nEUW0
|
||||
uOOw4e8h6jG0oO49XZlrcXR3AgMBAAGjJDAiMBMGA1UdJQQMMAoGCCsGAQUFBwMC
|
||||
MAsGA1UdDwQEAwIHgDANBgkqhkiG9w0BAQsFAAOCAgEAKFOOYmIiqekLfmJsOOSl
|
||||
57qCF52rpSbRAKHvGfeYlNRhrsGgyIJm0A7Kz082IdGQT5XFNxKus/wA9luIoVBU
|
||||
H3iWgZfWmqajvB2UDZ245ievfAvXV+W84nXfzhRSGVDIKEbssuj9l1Y5Apeu7OR6
|
||||
lvIsgZMcnf2wy53j6TFvD4Dh6I2MRKWvWD0NQLzye4N6UrdzAjs6Ricsjjv6trAs
|
||||
SHR58PjdkYL8dOMSdnR97N8TekF/EnAhLMO/9WES72vlpzHz+icFdcGBUaOnHJz+
|
||||
M1WvKN6AXrTeBpt0VrSfjFAv6XwExeFguA58UmPvMrWqsRH3+gtyqJzdco6awCLv
|
||||
efvcoDCY7yOPLYUuenMcTPOjPIOI+gbFj31Vo1YSQ5/bxIU5B8AFJjzloEM4zZqV
|
||||
kooc1qC/q0jHdww2kq/eVGJty2mL8xJawzQW5wR1yMcPZP1r08znN/TH51K4ntoH
|
||||
bY298QUnDX9srMmiV5DT9oCwebiek4BBAGRiU2w8Oerd6yRtXBq3qVPwGuQ9RzRV
|
||||
eK6hXiIHSjgj7QkEpcg6KfUSP0NPWC6r1qKLdLQP2a9Arog+cXMXP+5nvZ6VjzSS
|
||||
1ZtvvOT1ny7+N7qy5CVgmiBTOgsYZxgWw3iQM22IR/1PvnMtzws1YjhmYV3LzsgZ
|
||||
mvrGNhUzU4zKdkeWcRE9LZ4=
|
||||
-----END CERTIFICATE-----
|
||||
51
conf/homepage/nas-tls/key.pem
Executable file
51
conf/homepage/nas-tls/key.pem
Executable file
@@ -0,0 +1,51 @@
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
MIIJKAIBAAKCAgEA1/s6n+UB1t0L3n2887UH0KJGQEO7QxQ09EJ8KTQ50xcxG3W1
|
||||
FzECIZQhX0cU7UC/9LNFRygbh62YNAt+r3Avls9+xIGHa5/tk0rxWCHLDqIAH8NC
|
||||
J/fZEDffOI0FvF4kxiIgF+3fUWC+MsO92Nuaa+n98+Gwp+UiHXI4VhlQK62+VkJt
|
||||
sjjc+woENaSREV9ClVu8AEiF8XErys0Mr2lbsIM1xuka2vksVegF3ZHFHwvrtuhl
|
||||
15iHV3JCEYVewPY8R8dtrpWoqzleUUkcIPMR0hP1HrKQ6GlYwLCOEx47Aa89mNVO
|
||||
l17INYPDo+Us7kZqE0d+O7Lxd42FHllvLeulAtZ2jnJ25cZPztdM2er8J1dswvb+
|
||||
vcGTpNKYokAHyR29nZqmuHSJYFF/yVMl5oW7+nMdXEJh3v1aTh5sy354yZw7PbIa
|
||||
1yo7/CSaOG5LsMIolrkAlzG1D2QIxRBTQM0ZosZZ4seZmnLDMm+DMDfYk2+IqpPx
|
||||
SKyNblDyaytm0+Vr1gSa1YHT3XRdY21wBF4HsUgj1YDUPgavu2Yez6BbkLONe0A/
|
||||
C3dcwPj3W3wOCoFVpPr8P4CKO6a1s3azyv8Ru7vlm5byIe3v/mlOTcZ3eutLBHfw
|
||||
GSdWJ4oVdc+NNWIK197GffS5fL0HvucRRbS447Dh7yHqMbSg7j1dmWtxdHcCAwEA
|
||||
AQKCAgEAvlrlK4GqIlZGHL1TaLP4BFDRe9h2VkOb/GAQkDxAbqS1Gk+e4KbICxJE
|
||||
a3X5orV7uU67U2CtCuLcD5rF+Bf3SYLtZoIG+btFp5jYp2V5UxdC5ruwNgvCmwGz
|
||||
UmMwV/ndjWcMRCrZtR5/47wTOesq6cuckHMswH05mRxPPMsolqaV5+66QebOFM+a
|
||||
MDEvzlDYHU1xoApLSyYEg8Q/VuaT8jlij0Jp8e7EvZ42dTcBtkBKarXe9KqxNkg0
|
||||
pL6YaZdcP6MsL0AmHWr9jsTR7tRss2v1kS2ue7hFiebSAVWWigCKWIY/szfNWyUb
|
||||
q/rTo9oZqY5MWo93NHhdiAco7x8OGZh+05/3/rTHa7ouIRtEfjJMnrAM8jUWtAS2
|
||||
QJhpQ7A7J+iQ0FY2GVF5J07frE7ue4lozJoUrkqBZ9UJwneAvyfj76PZOPA9qtD/
|
||||
nr5zurkvZ+fbbcRzNCvRysAh0AGVYfgvRJJc5pK2BDuh6KUCLTaXOkwRSQuMlfnZ
|
||||
8TuNf9VCJUu95biAJKb7VhjC8OU65x/rtuB7MzoigVBQehFkFlYg/ynMZ0vadvuM
|
||||
JKGpH2UppXBwd52x4IWMAAQvcEcHblJd4l9IvMUjH/C/B7TOeadQ+Wvb4PxTxP+n
|
||||
roG3VkaaDenNHvrbKDpr5qrL1ODSj99qoNFGtdJA9pDhCJsO/UECggEBAPJvDR55
|
||||
C3shhv9msDQtXim6yRyFU+sOGohWRLuy+j7VH/O6+o34XaxrvH67tho3GN4o5lZ0
|
||||
mi4521TsKOqRDJINS7E0IVG1mbOHEI2RQgGsHhvVWlkOFJ84GQi+Lv526q3oydsc
|
||||
Tp1lT6FOoPyAvN4Ev6Fmz7oL7sMj1cyuRdR0W8mhOs1QEQmM4ZpfPlB8Ls1rmezr
|
||||
ZO63wqNKVMIkJGWHt4ENTIqpIoH8HGw2amjcsdhFBy5DTpuePyg5B+1g/wA47jD2
|
||||
K3S5jS9hBR6lkNqYIaeVswy/V7iqQx8opoI9ImBdCDqmhTVSiOabfvAACXiVowMG
|
||||
qSBkwqDKL1IU71cCggEBAOQRPMmJLiYwtir5Y0+zwdJ7/BfTDPWrp8iYA2/WjBc7
|
||||
Pt1EmbwmVTPgiGm/o2y8ACZ1NRcKZiexodcdeXS6rL/HNBdC9KaBqgVY6t/siCS+
|
||||
QXk7eDNwSifbw018k9C68lx35tIu3wvCPcL++qkpUXzz+nZ2gWrtLDhxBbvVzgfh
|
||||
jvkPhM8bl2DWhWVygshLg36+o1BI77DyWZI+BxXotgElo4EqSUZIjfbT9bUxzLvn
|
||||
g3p6zU3jGzFEXKJWIigj2XeOrYs8NIgdG7phnUpy9JnlDJY1KC7E89XiG/7Btgpj
|
||||
xGmpMZ14D85s2AxIVycv5zpkZdhAtm7p5Puq2VkDD+ECggEAG6mcP5vkOXqL4tye
|
||||
wnVixzQu+ngkKTAEywW89gXoE/9RlAgDyutKFQB+E5/rmXYr+j2Eetz3MssbQcdo
|
||||
q8s9OfUWa/Pc0Wv9S8TfmKe4dmRjUx23H25B4CEQijTZO+Ppx0pGrh++wKrsuSU1
|
||||
rVorMtIr44jNrxbpeY6/OImyIhnc11b0VLUMHKDcpTa0744b8QiUGbqKW8rQBL3Y
|
||||
igaBuKwRvkH8N94wt9BClf5nieuUx26o8RhxAcS+xCIty2JD9oyIcUHFl54MhBl3
|
||||
8hVGQAsX2/1y3sN+iO20lvuWdEnxgDldVQPnMzxlrpqTk2MNsZqxbQj3h2C37Izl
|
||||
dWI6JQKCAQBe2pB2nZhVB+NsAib8yh1tpmVVn1B/iLISqq6bQBcpvllJ+7MY3rSH
|
||||
C/aQTMTyf0pstEitWYTdM3LFHhwaoV0hsf8HQbCw47LL4IxnL1/8MCjY/BPlCOm+
|
||||
pBcZThvIL0iHjtKwThA0OsgnJpcn7ehXWL2tsWHoD9ZZbyBcW/MBsh0dlwe8f5Q5
|
||||
EV+Prs2X8lgxSaZwyLTv2gvI2AVoZk30MixLl0O8eIaaxtMlVh35dLNpKFPk9fSk
|
||||
S/NfDQXNvgM/R1cEVrjed4TFwr2BbkgvDWVrv5YDxaRIK29LSFOnBJF3BIh/HqUs
|
||||
THaavSeKQ9Eepwz4oQl/HcY/qXIWJEDhAoIBABxNralOQ3UOK3Xo6Gir2Xyb9bnR
|
||||
ToJuCvfrAZRKTstyTDlqB/U6Eu0m/xT6j81wcEIQxIYy5nyxeelKcJVf3M5J2u9o
|
||||
xV4vycHsfBj4XRDsF6R7etLl1jnb9sOsZjsB2pypqdSJaiV53sWo2Q566ZL7zbd+
|
||||
OWchpBqqw9zR9zcOjOj/oW1B6ramGjW8+axm8Mi5t3PgHI048Pghg/G8mhvXberr
|
||||
6Ag9mbMMkXXs6pHU+ZYBOCb4VvuvdJXAUWTc97asx9TQYuuZ87zIh/RuIRIuKVNw
|
||||
SUqoCBFunRabtagBir+Eqkfed9xanSQaMEAB9wW/OmqhXBtEpN0gYuMv8zs=
|
||||
-----END RSA PRIVATE KEY-----
|
||||
147
conf/homepage/services.yaml
Executable file
147
conf/homepage/services.yaml
Executable file
@@ -0,0 +1,147 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/latest/configs/services
|
||||
|
||||
- Media:
|
||||
- Plex:
|
||||
href: http://10.0.50.56:32400
|
||||
icon: si-plex
|
||||
siteMonitor: http://10.0.50.56:32400
|
||||
description: Media Server (esh-nas-pve 10.0.50.56)
|
||||
widget:
|
||||
type: plex
|
||||
url: http://10.0.50.56:32400
|
||||
key: xkKeTCQaLhh3nUDGToLf
|
||||
- Jellyfin:
|
||||
href: http://10.0.50.57:8096
|
||||
icon: si-jellyfin
|
||||
siteMonitor: http://10.0.50.57:8096
|
||||
description: Media Server (esh-nas-pve 10.0.50.57)
|
||||
widget:
|
||||
type: jellyfin
|
||||
url: http://10.0.50.57:8096
|
||||
key: 068ca2d04e1041e894c04b36122e09ce
|
||||
enableBlocks: true
|
||||
|
||||
- ESH:
|
||||
- Brother Printer:
|
||||
href: http://10.0.90.125/
|
||||
icon: mdi-printer
|
||||
siteMonitor: http://10.0.90.125/
|
||||
- Firewall:
|
||||
href: https://10.0.250.1
|
||||
icon: mdi-wall-fire
|
||||
siteMonitor: https://10.0.250.1
|
||||
description: esh-gw
|
||||
- Switch-Garage:
|
||||
href: http://10.0.250.2/
|
||||
icon: mdi-switch
|
||||
siteMonitor: http://10.0.250.2
|
||||
description: esh-sw-g
|
||||
- Switch-Media:
|
||||
href: http://10.0.250.3/
|
||||
icon: mdi-switch
|
||||
siteMonitor: http://10.0.250.3
|
||||
description: esh-sw-mda
|
||||
- ESH-NAS:
|
||||
href: https://10.0.50.50:9090
|
||||
icon: mdi-nas
|
||||
siteMonitor: https://10.0.50.50:9090
|
||||
description: CoPilot Share Manager - use root
|
||||
- ESH-PVE:
|
||||
href: https://10.0.250.35:8006
|
||||
siteMonitor: https://10.0.250.35:8006
|
||||
description: Proxmox Server
|
||||
icon: si-proxmox
|
||||
- ESH-PVE-NAS:
|
||||
href: https://10.0.50.55:8006
|
||||
siteMonitor: https://10.0.50.55:8006
|
||||
description: Proxmox Server for Nas
|
||||
icon: si-proxmox
|
||||
- ESH-FileBot:
|
||||
ping: https://10.0.50.70
|
||||
description: Restic Backup Target and File Sync (esh-nas-pve)
|
||||
icon: mdi-sync-circle
|
||||
- ESH-VM-Docker:
|
||||
icon: si-docker
|
||||
ping: 10.0.50.45
|
||||
description: Docker VM
|
||||
|
||||
- PFI-ANA:
|
||||
- ANA-Firewall:
|
||||
href: https://ana-fw.phasefinal.com/
|
||||
icon: mdi-wall-fire
|
||||
siteMonitor: https://10.250.250.1
|
||||
description: ana-gw Fortigate 81F
|
||||
- PFI-ML1-kvm:
|
||||
href: http://10.250.250.40/
|
||||
ping: http://10.250.250.40/
|
||||
icon: mdi-monitor
|
||||
- PFI-r750xs-idrac:
|
||||
href: https://10.250.250.30/
|
||||
siteMonitor: https://10.250.250.30/
|
||||
icon: si-dell
|
||||
- PFI-PVE:
|
||||
href: https://10.250.250.31:8006/
|
||||
siteMonitor: https://10.250.250.31:8006/
|
||||
description: Proxmox Server
|
||||
icon: si-proxmox
|
||||
- ANA-NAS:
|
||||
href: https://10.250.50.50:9090/
|
||||
siteMonitor: https://10.250.50.50:9090/
|
||||
description: PVE NAS root
|
||||
icon: mdi-nas
|
||||
- ANA-FileBot:
|
||||
ping: https://10.250.50.53/
|
||||
description: Proxmox Server
|
||||
icon: si-proxmox
|
||||
- PFI-VM-Docker:
|
||||
icon: si-docker
|
||||
ping: 10.250.50.70
|
||||
description: Docker VM
|
||||
- PFI-ANA-ML1:
|
||||
icon: mdi-brain
|
||||
ping: 10.250.50.51
|
||||
description: ML Server (10.250.50.51 ana)
|
||||
|
||||
- PFI-NH3:
|
||||
- NH3-Firewall:
|
||||
href: https://10.100.250.1
|
||||
icon: mdi-wall-fire
|
||||
siteMonitor: https://10.100.250.1
|
||||
description: nh3-gw Fortigate 101F
|
||||
- NH3-SW1:
|
||||
href: https://10.100.250.2
|
||||
icon: mdi-switch
|
||||
ping: https://10.100.250.2
|
||||
description: Mikrotik CRS328-24P-4S+
|
||||
- NH3-NAS:
|
||||
href: https://10.100.50.50
|
||||
icon: mdi-nas
|
||||
ping: 10.100.50.50
|
||||
description: Synology NAS
|
||||
- NH3-PVE:
|
||||
href: https://10.100.250.60:8006/
|
||||
siteMonitor: https://10.100.250.60:8006/
|
||||
description: Proxmox Server
|
||||
icon: si-proxmox
|
||||
- NH3-VM-Docker:
|
||||
icon: si-docker
|
||||
ping: 10.100.50.40
|
||||
description: Docker VM
|
||||
- NH3-Ansible:
|
||||
icon: si-ansible
|
||||
ping: 10.100.50.42
|
||||
description: Ansible Control Node (10.100.50.42)
|
||||
|
||||
- AI Systems:
|
||||
- ComfyUI:
|
||||
href: http://10.250.50.51:8188
|
||||
siteMonitor: http://10.250.50.51:8188
|
||||
description: ComfyUI Image/Video AI (AnaML port 8188)
|
||||
icon: mdi-image-filter-center-focus
|
||||
- KokoroTTS:
|
||||
href: http://10.250.50.51:8880/web
|
||||
siteMonitor: http://10.250.50.51:8880/web
|
||||
description: KokoroTTS TTS (AnaML port 8880)
|
||||
icon: mdi-text-to-speech
|
||||
39
conf/homepage/settings.yaml
Executable file
39
conf/homepage/settings.yaml
Executable file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/latest/configs/settings
|
||||
title: ... all my base ...
|
||||
theme: dark
|
||||
color: slate
|
||||
background:
|
||||
image: https://w.wallhaven.cc/full/p9/wallhaven-p9gr2p.jpg
|
||||
blur: sm
|
||||
# saturate: 50
|
||||
opacity: 20
|
||||
# brightness: 10
|
||||
#cardBlur: sm
|
||||
headerStyle: boxedWidgets
|
||||
providers:
|
||||
openweathermap: openweathermapapikey
|
||||
weatherapi: weatherapiapikey
|
||||
|
||||
quicklaunch:
|
||||
searchDescriptions: true
|
||||
hideInternetSearch: true
|
||||
showSearchSuggestions: true
|
||||
hideVisitURL: true
|
||||
|
||||
showStats: false
|
||||
statusStyle: ""
|
||||
|
||||
layout:
|
||||
Media:
|
||||
Apps:
|
||||
UltraSeedbox:
|
||||
style: row
|
||||
columns: 3
|
||||
AI Systems:
|
||||
style: row
|
||||
columns: 3
|
||||
ESH:
|
||||
PFI-NH3:
|
||||
PFI-ANA:
|
||||
12
conf/homepage/widgets.yaml
Executable file
12
conf/homepage/widgets.yaml
Executable file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/latest/configs/service-widgets
|
||||
|
||||
- resources:
|
||||
cpu: true
|
||||
memory: true
|
||||
disk: /
|
||||
|
||||
- search:
|
||||
provider: duckduckgo
|
||||
target: _blank
|
||||
@@ -1,18 +0,0 @@
|
||||
configs:
|
||||
|
||||
noti-mm@phasefinal.com:
|
||||
urls:
|
||||
- mmosts://notibot@mm.phasefinal.com:443/bhsxzdyeqbyqiqwrn8zu4rsuta
|
||||
# - tgram://bottoken
|
||||
# - mmosts://notibot@mm.phasefinal.com:443/p1b4agsfkjg3ikhxtc873uui4a?channel=Notifications
|
||||
|
||||
noti-lk@phasefinal.com:
|
||||
urls:
|
||||
- sendgrid://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:notifications@phasefinal.com/lkraven@lkraven.com
|
||||
|
||||
noti-vhpfi@phasefinal.com:
|
||||
urls:
|
||||
- sendgrid://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:notifications@phasefinal.com/vh@phasefinal.com
|
||||
|
||||
|
||||
|
||||
@@ -1,651 +0,0 @@
|
||||
{
|
||||
"ServiceSettings": {
|
||||
"SiteURL": "https://mm.phasefinal.com",
|
||||
"WebsocketURL": "",
|
||||
"LicenseFileLocation": "",
|
||||
"ListenAddress": ":8065",
|
||||
"ConnectionSecurity": "",
|
||||
"TLSCertFile": "",
|
||||
"TLSKeyFile": "",
|
||||
"TLSMinVer": "1.2",
|
||||
"TLSStrictTransport": false,
|
||||
"TLSStrictTransportMaxAge": 63072000,
|
||||
"TLSOverwriteCiphers": [],
|
||||
"UseLetsEncrypt": false,
|
||||
"LetsEncryptCertificateCacheFile": "./config/letsencrypt.cache",
|
||||
"Forward80To443": false,
|
||||
"TrustedProxyIPHeader": [],
|
||||
"ReadTimeout": 300,
|
||||
"WriteTimeout": 300,
|
||||
"IdleTimeout": 60,
|
||||
"MaximumLoginAttempts": 10,
|
||||
"GoroutineHealthThreshold": -1,
|
||||
"EnableOAuthServiceProvider": true,
|
||||
"EnableIncomingWebhooks": true,
|
||||
"EnableOutgoingWebhooks": true,
|
||||
"EnableOutgoingOAuthConnections": false,
|
||||
"EnableCommands": true,
|
||||
"OutgoingIntegrationRequestsTimeout": 30,
|
||||
"EnablePostUsernameOverride": true,
|
||||
"EnablePostIconOverride": true,
|
||||
"GoogleDeveloperKey": "",
|
||||
"EnableLinkPreviews": true,
|
||||
"EnablePermalinkPreviews": true,
|
||||
"RestrictLinkPreviews": "",
|
||||
"EnableTesting": false,
|
||||
"EnableDeveloper": false,
|
||||
"DeveloperFlags": "",
|
||||
"EnableClientPerformanceDebugging": false,
|
||||
"EnableOpenTracing": false,
|
||||
"EnableSecurityFixAlert": true,
|
||||
"EnableInsecureOutgoingConnections": false,
|
||||
"AllowedUntrustedInternalConnections": "",
|
||||
"EnableMultifactorAuthentication": false,
|
||||
"EnforceMultifactorAuthentication": false,
|
||||
"EnableUserAccessTokens": true,
|
||||
"AllowCorsFrom": "",
|
||||
"CorsExposedHeaders": "",
|
||||
"CorsAllowCredentials": false,
|
||||
"CorsDebug": false,
|
||||
"AllowCookiesForSubdomains": false,
|
||||
"ExtendSessionLengthWithActivity": false,
|
||||
"SessionLengthWebInDays": 180,
|
||||
"SessionLengthWebInHours": 4320,
|
||||
"SessionLengthMobileInDays": 180,
|
||||
"SessionLengthMobileInHours": 4320,
|
||||
"SessionLengthSSOInDays": 30,
|
||||
"SessionLengthSSOInHours": 720,
|
||||
"SessionCacheInMinutes": 10,
|
||||
"SessionIdleTimeoutInMinutes": 43200,
|
||||
"WebsocketSecurePort": 443,
|
||||
"WebsocketPort": 80,
|
||||
"WebserverMode": "gzip",
|
||||
"EnableGifPicker": true,
|
||||
"GiphySdkKey": "",
|
||||
"EnableCustomEmoji": true,
|
||||
"EnableEmojiPicker": true,
|
||||
"PostEditTimeLimit": -1,
|
||||
"TimeBetweenUserTypingUpdatesMilliseconds": 5000,
|
||||
"EnablePostSearch": true,
|
||||
"EnableFileSearch": true,
|
||||
"MinimumHashtagLength": 3,
|
||||
"EnableUserTypingMessages": true,
|
||||
"EnableChannelViewedMessages": true,
|
||||
"EnableUserStatuses": true,
|
||||
"ExperimentalEnableAuthenticationTransfer": true,
|
||||
"ClusterLogTimeoutMilliseconds": 2000,
|
||||
"EnablePreviewFeatures": true,
|
||||
"EnableTutorial": true,
|
||||
"EnableOnboardingFlow": true,
|
||||
"ExperimentalEnableDefaultChannelLeaveJoinMessages": true,
|
||||
"ExperimentalGroupUnreadChannels": "disabled",
|
||||
"EnableAPITeamDeletion": false,
|
||||
"EnableAPITriggerAdminNotifications": false,
|
||||
"EnableAPIUserDeletion": false,
|
||||
"ExperimentalEnableHardenedMode": false,
|
||||
"ExperimentalStrictCSRFEnforcement": false,
|
||||
"EnableEmailInvitations": true,
|
||||
"DisableBotsWhenOwnerIsDeactivated": true,
|
||||
"EnableBotAccountCreation": true,
|
||||
"EnableSVGs": true,
|
||||
"EnableLatex": true,
|
||||
"EnableInlineLatex": true,
|
||||
"PostPriority": true,
|
||||
"AllowPersistentNotifications": true,
|
||||
"AllowPersistentNotificationsForGuests": false,
|
||||
"PersistentNotificationIntervalMinutes": 5,
|
||||
"PersistentNotificationMaxCount": 6,
|
||||
"PersistentNotificationMaxRecipients": 5,
|
||||
"EnableAPIChannelDeletion": false,
|
||||
"EnableLocalMode": false,
|
||||
"LocalModeSocketLocation": "/var/tmp/mattermost_local.socket",
|
||||
"EnableAWSMetering": false,
|
||||
"SplitKey": "",
|
||||
"FeatureFlagSyncIntervalSeconds": 30,
|
||||
"DebugSplit": false,
|
||||
"ThreadAutoFollow": true,
|
||||
"CollapsedThreads": "always_on",
|
||||
"ManagedResourcePaths": "",
|
||||
"EnableCustomGroups": true,
|
||||
"SelfHostedPurchase": true,
|
||||
"AllowSyncedDrafts": true,
|
||||
"UniqueEmojiReactionLimitPerPost": 50,
|
||||
"RefreshPostStatsRunTime": "00:00",
|
||||
"MaximumPayloadSizeBytes": 300000
|
||||
},
|
||||
"TeamSettings": {
|
||||
"SiteName": "Mattermost",
|
||||
"MaxUsersPerTeam": 50,
|
||||
"EnableJoinLeaveMessageByDefault": true,
|
||||
"EnableUserCreation": true,
|
||||
"EnableOpenServer": false,
|
||||
"EnableUserDeactivation": false,
|
||||
"RestrictCreationToDomains": "",
|
||||
"EnableCustomUserStatuses": true,
|
||||
"EnableCustomBrand": false,
|
||||
"CustomBrandText": "",
|
||||
"CustomDescriptionText": "",
|
||||
"RestrictDirectMessage": "any",
|
||||
"EnableLastActiveTime": true,
|
||||
"UserStatusAwayTimeout": 300,
|
||||
"MaxChannelsPerTeam": 2000,
|
||||
"MaxNotificationsPerChannel": 1000,
|
||||
"EnableConfirmNotificationsToChannel": true,
|
||||
"TeammateNameDisplay": "username",
|
||||
"ExperimentalViewArchivedChannels": true,
|
||||
"ExperimentalEnableAutomaticReplies": false,
|
||||
"LockTeammateNameDisplay": false,
|
||||
"ExperimentalPrimaryTeam": "",
|
||||
"ExperimentalDefaultChannels": []
|
||||
},
|
||||
"ClientRequirements": {
|
||||
"AndroidLatestVersion": "",
|
||||
"AndroidMinVersion": "",
|
||||
"IosLatestVersion": "",
|
||||
"IosMinVersion": ""
|
||||
},
|
||||
"SqlSettings": {
|
||||
"DriverName": "postgres",
|
||||
"DataSource": "postgres://mmuser:mostest@localhost/mattermost_test?sslmode=disable\u0026connect_timeout=10\u0026binary_parameters=yes",
|
||||
"DataSourceReplicas": [],
|
||||
"DataSourceSearchReplicas": [],
|
||||
"MaxIdleConns": 20,
|
||||
"ConnMaxLifetimeMilliseconds": 3600000,
|
||||
"ConnMaxIdleTimeMilliseconds": 300000,
|
||||
"MaxOpenConns": 300,
|
||||
"Trace": false,
|
||||
"AtRestEncryptKey": "7t7pes56pe4fexqb68tcd1yndfgw1nbj",
|
||||
"QueryTimeout": 30,
|
||||
"DisableDatabaseSearch": false,
|
||||
"MigrationsStatementTimeoutSeconds": 100000,
|
||||
"ReplicaLagSettings": [],
|
||||
"ReplicaMonitorIntervalSeconds": 5
|
||||
},
|
||||
"LogSettings": {
|
||||
"EnableConsole": true,
|
||||
"ConsoleLevel": "DEBUG",
|
||||
"ConsoleJson": true,
|
||||
"EnableColor": false,
|
||||
"EnableFile": true,
|
||||
"FileLevel": "INFO",
|
||||
"FileJson": true,
|
||||
"FileLocation": "",
|
||||
"EnableWebhookDebugging": true,
|
||||
"EnableDiagnostics": true,
|
||||
"VerboseDiagnostics": false,
|
||||
"EnableSentry": true,
|
||||
"AdvancedLoggingJSON": {},
|
||||
"AdvancedLoggingConfig": "",
|
||||
"MaxFieldSize": 2048
|
||||
},
|
||||
"ExperimentalAuditSettings": {
|
||||
"FileEnabled": false,
|
||||
"FileName": "",
|
||||
"FileMaxSizeMB": 100,
|
||||
"FileMaxAgeDays": 0,
|
||||
"FileMaxBackups": 0,
|
||||
"FileCompress": false,
|
||||
"FileMaxQueueSize": 1000,
|
||||
"AdvancedLoggingJSON": {},
|
||||
"AdvancedLoggingConfig": ""
|
||||
},
|
||||
"NotificationLogSettings": {
|
||||
"EnableConsole": true,
|
||||
"ConsoleLevel": "DEBUG",
|
||||
"ConsoleJson": true,
|
||||
"EnableColor": false,
|
||||
"EnableFile": true,
|
||||
"FileLevel": "INFO",
|
||||
"FileJson": true,
|
||||
"FileLocation": "",
|
||||
"AdvancedLoggingJSON": {},
|
||||
"AdvancedLoggingConfig": ""
|
||||
},
|
||||
"PasswordSettings": {
|
||||
"MinimumLength": 8,
|
||||
"Lowercase": false,
|
||||
"Number": false,
|
||||
"Uppercase": false,
|
||||
"Symbol": false,
|
||||
"EnableForgotLink": true
|
||||
},
|
||||
"FileSettings": {
|
||||
"EnableFileAttachments": true,
|
||||
"EnableMobileUpload": true,
|
||||
"EnableMobileDownload": true,
|
||||
"MaxFileSize": 104857600,
|
||||
"MaxImageResolution": 33177600,
|
||||
"MaxImageDecoderConcurrency": -1,
|
||||
"DriverName": "local",
|
||||
"Directory": "./data/",
|
||||
"EnablePublicLink": false,
|
||||
"ExtractContent": true,
|
||||
"ArchiveRecursion": false,
|
||||
"PublicLinkSalt": "wne95wt3pyh4kp4eyjjrb7yjy1pki3xo",
|
||||
"InitialFont": "nunito-bold.ttf",
|
||||
"AmazonS3AccessKeyId": "",
|
||||
"AmazonS3SecretAccessKey": "",
|
||||
"AmazonS3Bucket": "",
|
||||
"AmazonS3PathPrefix": "",
|
||||
"AmazonS3Region": "",
|
||||
"AmazonS3Endpoint": "s3.amazonaws.com",
|
||||
"AmazonS3SSL": true,
|
||||
"AmazonS3SignV2": false,
|
||||
"AmazonS3SSE": false,
|
||||
"AmazonS3Trace": false,
|
||||
"AmazonS3RequestTimeoutMilliseconds": 30000,
|
||||
"AmazonS3UploadPartSizeBytes": 5242880,
|
||||
"DedicatedExportStore": false,
|
||||
"ExportDriverName": "local",
|
||||
"ExportDirectory": "./data/",
|
||||
"ExportAmazonS3AccessKeyId": "",
|
||||
"ExportAmazonS3SecretAccessKey": "",
|
||||
"ExportAmazonS3Bucket": "",
|
||||
"ExportAmazonS3PathPrefix": "",
|
||||
"ExportAmazonS3Region": "",
|
||||
"ExportAmazonS3Endpoint": "s3.amazonaws.com",
|
||||
"ExportAmazonS3SSL": true,
|
||||
"ExportAmazonS3SignV2": false,
|
||||
"ExportAmazonS3SSE": false,
|
||||
"ExportAmazonS3Trace": false,
|
||||
"ExportAmazonS3RequestTimeoutMilliseconds": 30000,
|
||||
"ExportAmazonS3PresignExpiresSeconds": 21600,
|
||||
"ExportAmazonS3UploadPartSizeBytes": 104857600
|
||||
},
|
||||
"EmailSettings": {
|
||||
"EnableSignUpWithEmail": true,
|
||||
"EnableSignInWithEmail": true,
|
||||
"EnableSignInWithUsername": true,
|
||||
"SendEmailNotifications": true,
|
||||
"UseChannelInEmailNotifications": false,
|
||||
"RequireEmailVerification": false,
|
||||
"FeedbackName": "PFI Mattermost",
|
||||
"FeedbackEmail": "mattermost@phasefinal.com",
|
||||
"ReplyToAddress": "",
|
||||
"FeedbackOrganization": "",
|
||||
"EnableSMTPAuth": true,
|
||||
"SMTPUsername": "apikey",
|
||||
"SMTPPassword": "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",
|
||||
"SMTPServer": "smtp.sendgrid.net",
|
||||
"SMTPPort": "465",
|
||||
"SMTPServerTimeout": 10,
|
||||
"ConnectionSecurity": "TLS",
|
||||
"SendPushNotifications": true,
|
||||
"PushNotificationServer": "https://push-test.mattermost.com",
|
||||
"PushNotificationContents": "full",
|
||||
"PushNotificationBuffer": 1000,
|
||||
"EnableEmailBatching": true,
|
||||
"EmailBatchingBufferSize": 256,
|
||||
"EmailBatchingInterval": 30,
|
||||
"EnablePreviewModeBanner": false,
|
||||
"SkipServerCertificateVerification": false,
|
||||
"EmailNotificationContentsType": "full",
|
||||
"LoginButtonColor": "#0000",
|
||||
"LoginButtonBorderColor": "#2389D7",
|
||||
"LoginButtonTextColor": "#2389D7"
|
||||
},
|
||||
"RateLimitSettings": {
|
||||
"Enable": false,
|
||||
"PerSec": 10,
|
||||
"MaxBurst": 100,
|
||||
"MemoryStoreSize": 10000,
|
||||
"VaryByRemoteAddr": true,
|
||||
"VaryByUser": false,
|
||||
"VaryByHeader": ""
|
||||
},
|
||||
"PrivacySettings": {
|
||||
"ShowEmailAddress": true,
|
||||
"ShowFullName": true
|
||||
},
|
||||
"SupportSettings": {
|
||||
"TermsOfServiceLink": "https://mattermost.com/terms-of-use/",
|
||||
"PrivacyPolicyLink": "https://mattermost.com/privacy-policy/",
|
||||
"AboutLink": "https://docs.mattermost.com/about/product.html/",
|
||||
"HelpLink": "https://mattermost.com/default-help/",
|
||||
"ReportAProblemLink": "https://mattermost.com/default-report-a-problem/",
|
||||
"ForgotPasswordLink": "",
|
||||
"SupportEmail": "support@phasefinal.com",
|
||||
"CustomTermsOfServiceEnabled": false,
|
||||
"CustomTermsOfServiceReAcceptancePeriod": 365,
|
||||
"EnableAskCommunityLink": true
|
||||
},
|
||||
"AnnouncementSettings": {
|
||||
"EnableBanner": false,
|
||||
"BannerText": "",
|
||||
"BannerColor": "#f2a93b",
|
||||
"BannerTextColor": "#333333",
|
||||
"AllowBannerDismissal": true,
|
||||
"AdminNoticesEnabled": true,
|
||||
"UserNoticesEnabled": true,
|
||||
"NoticesURL": "https://notices.mattermost.com/",
|
||||
"NoticesFetchFrequency": 3600,
|
||||
"NoticesSkipCache": false
|
||||
},
|
||||
"ThemeSettings": {
|
||||
"EnableThemeSelection": true,
|
||||
"DefaultTheme": "default",
|
||||
"AllowCustomThemes": true,
|
||||
"AllowedThemes": []
|
||||
},
|
||||
"GitLabSettings": {
|
||||
"Enable": false,
|
||||
"Secret": "",
|
||||
"Id": "",
|
||||
"Scope": "",
|
||||
"AuthEndpoint": "",
|
||||
"TokenEndpoint": "",
|
||||
"UserAPIEndpoint": "",
|
||||
"DiscoveryEndpoint": "",
|
||||
"ButtonText": "",
|
||||
"ButtonColor": ""
|
||||
},
|
||||
"GoogleSettings": {
|
||||
"Enable": false,
|
||||
"Secret": "",
|
||||
"Id": "",
|
||||
"Scope": "profile email",
|
||||
"AuthEndpoint": "https://accounts.google.com/o/oauth2/v2/auth",
|
||||
"TokenEndpoint": "https://www.googleapis.com/oauth2/v4/token",
|
||||
"UserAPIEndpoint": "https://people.googleapis.com/v1/people/me?personFields=names,emailAddresses,nicknames,metadata",
|
||||
"DiscoveryEndpoint": "",
|
||||
"ButtonText": "",
|
||||
"ButtonColor": ""
|
||||
},
|
||||
"Office365Settings": {
|
||||
"Enable": false,
|
||||
"Secret": "",
|
||||
"Id": "",
|
||||
"Scope": "User.Read",
|
||||
"AuthEndpoint": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
|
||||
"TokenEndpoint": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
|
||||
"UserAPIEndpoint": "https://graph.microsoft.com/v1.0/me",
|
||||
"DiscoveryEndpoint": "",
|
||||
"DirectoryId": ""
|
||||
},
|
||||
"OpenIdSettings": {
|
||||
"Enable": false,
|
||||
"Secret": "",
|
||||
"Id": "",
|
||||
"Scope": "profile openid email",
|
||||
"AuthEndpoint": "",
|
||||
"TokenEndpoint": "",
|
||||
"UserAPIEndpoint": "",
|
||||
"DiscoveryEndpoint": "",
|
||||
"ButtonText": "",
|
||||
"ButtonColor": "#145DBF"
|
||||
},
|
||||
"LdapSettings": {
|
||||
"Enable": false,
|
||||
"EnableSync": false,
|
||||
"LdapServer": "",
|
||||
"LdapPort": 389,
|
||||
"ConnectionSecurity": "",
|
||||
"BaseDN": "",
|
||||
"BindUsername": "",
|
||||
"BindPassword": "",
|
||||
"UserFilter": "",
|
||||
"GroupFilter": "",
|
||||
"GuestFilter": "",
|
||||
"EnableAdminFilter": false,
|
||||
"AdminFilter": "",
|
||||
"GroupDisplayNameAttribute": "",
|
||||
"GroupIdAttribute": "",
|
||||
"FirstNameAttribute": "",
|
||||
"LastNameAttribute": "",
|
||||
"EmailAttribute": "",
|
||||
"UsernameAttribute": "",
|
||||
"NicknameAttribute": "",
|
||||
"IdAttribute": "",
|
||||
"PositionAttribute": "",
|
||||
"LoginIdAttribute": "",
|
||||
"PictureAttribute": "",
|
||||
"SyncIntervalMinutes": 60,
|
||||
"SkipCertificateVerification": false,
|
||||
"PublicCertificateFile": "",
|
||||
"PrivateKeyFile": "",
|
||||
"QueryTimeout": 60,
|
||||
"MaxPageSize": 0,
|
||||
"LoginFieldName": "",
|
||||
"LoginButtonColor": "#0000",
|
||||
"LoginButtonBorderColor": "#2389D7",
|
||||
"LoginButtonTextColor": "#2389D7",
|
||||
"Trace": false
|
||||
},
|
||||
"ComplianceSettings": {
|
||||
"Enable": false,
|
||||
"Directory": "./data/",
|
||||
"EnableDaily": false,
|
||||
"BatchSize": 30000
|
||||
},
|
||||
"LocalizationSettings": {
|
||||
"DefaultServerLocale": "en",
|
||||
"DefaultClientLocale": "en",
|
||||
"AvailableLocales": ""
|
||||
},
|
||||
"SamlSettings": {
|
||||
"Enable": false,
|
||||
"EnableSyncWithLdap": false,
|
||||
"EnableSyncWithLdapIncludeAuth": false,
|
||||
"IgnoreGuestsLdapSync": false,
|
||||
"Verify": true,
|
||||
"Encrypt": true,
|
||||
"SignRequest": false,
|
||||
"IdpURL": "",
|
||||
"IdpDescriptorURL": "",
|
||||
"IdpMetadataURL": "",
|
||||
"ServiceProviderIdentifier": "",
|
||||
"AssertionConsumerServiceURL": "",
|
||||
"SignatureAlgorithm": "RSAwithSHA1",
|
||||
"CanonicalAlgorithm": "Canonical1.0",
|
||||
"ScopingIDPProviderId": "",
|
||||
"ScopingIDPName": "",
|
||||
"IdpCertificateFile": "",
|
||||
"PublicCertificateFile": "",
|
||||
"PrivateKeyFile": "",
|
||||
"IdAttribute": "",
|
||||
"GuestAttribute": "",
|
||||
"EnableAdminAttribute": false,
|
||||
"AdminAttribute": "",
|
||||
"FirstNameAttribute": "",
|
||||
"LastNameAttribute": "",
|
||||
"EmailAttribute": "",
|
||||
"UsernameAttribute": "",
|
||||
"NicknameAttribute": "",
|
||||
"LocaleAttribute": "",
|
||||
"PositionAttribute": "",
|
||||
"LoginButtonText": "SAML",
|
||||
"LoginButtonColor": "#34a28b",
|
||||
"LoginButtonBorderColor": "#2389D7",
|
||||
"LoginButtonTextColor": "#ffffff"
|
||||
},
|
||||
"NativeAppSettings": {
|
||||
"AppCustomURLSchemes": [
|
||||
"mmauth://",
|
||||
"mmauthbeta://"
|
||||
],
|
||||
"AppDownloadLink": "https://mattermost.com/download/#mattermostApps",
|
||||
"AndroidAppDownloadLink": "https://mattermost.com/mattermost-android-app/",
|
||||
"IosAppDownloadLink": "https://mattermost.com/mattermost-ios-app/"
|
||||
},
|
||||
"ClusterSettings": {
|
||||
"Enable": false,
|
||||
"ClusterName": "",
|
||||
"OverrideHostname": "",
|
||||
"NetworkInterface": "",
|
||||
"BindAddress": "",
|
||||
"AdvertiseAddress": "",
|
||||
"UseIPAddress": true,
|
||||
"EnableGossipCompression": true,
|
||||
"EnableExperimentalGossipEncryption": false,
|
||||
"ReadOnlyConfig": true,
|
||||
"GossipPort": 8074
|
||||
},
|
||||
"MetricsSettings": {
|
||||
"Enable": false,
|
||||
"BlockProfileRate": 0,
|
||||
"ListenAddress": ":8067"
|
||||
},
|
||||
"ExperimentalSettings": {
|
||||
"ClientSideCertEnable": false,
|
||||
"ClientSideCertCheck": "secondary",
|
||||
"LinkMetadataTimeoutMilliseconds": 5000,
|
||||
"RestrictSystemAdmin": false,
|
||||
"EnableSharedChannels": false,
|
||||
"EnableRemoteClusterService": false,
|
||||
"DisableAppBar": false,
|
||||
"DisableRefetchingOnBrowserFocus": false,
|
||||
"DelayChannelAutocomplete": false
|
||||
},
|
||||
"AnalyticsSettings": {
|
||||
"MaxUsersForStatistics": 2500
|
||||
},
|
||||
"ElasticsearchSettings": {
|
||||
"ConnectionURL": "http://localhost:9200",
|
||||
"Username": "elastic",
|
||||
"Password": "changeme",
|
||||
"EnableIndexing": false,
|
||||
"EnableSearching": false,
|
||||
"EnableAutocomplete": false,
|
||||
"Sniff": true,
|
||||
"PostIndexReplicas": 1,
|
||||
"PostIndexShards": 1,
|
||||
"ChannelIndexReplicas": 1,
|
||||
"ChannelIndexShards": 1,
|
||||
"UserIndexReplicas": 1,
|
||||
"UserIndexShards": 1,
|
||||
"AggregatePostsAfterDays": 365,
|
||||
"PostsAggregatorJobStartTime": "03:00",
|
||||
"IndexPrefix": "",
|
||||
"LiveIndexingBatchSize": 1,
|
||||
"BatchSize": 10000,
|
||||
"RequestTimeoutSeconds": 30,
|
||||
"SkipTLSVerification": false,
|
||||
"CA": "",
|
||||
"ClientCert": "",
|
||||
"ClientKey": "",
|
||||
"Trace": "",
|
||||
"IgnoredPurgeIndexes": ""
|
||||
},
|
||||
"BleveSettings": {
|
||||
"IndexDir": "",
|
||||
"EnableIndexing": false,
|
||||
"EnableSearching": false,
|
||||
"EnableAutocomplete": false,
|
||||
"BatchSize": 10000
|
||||
},
|
||||
"DataRetentionSettings": {
|
||||
"EnableMessageDeletion": false,
|
||||
"EnableFileDeletion": false,
|
||||
"EnableBoardsDeletion": false,
|
||||
"MessageRetentionDays": 365,
|
||||
"MessageRetentionHours": 0,
|
||||
"FileRetentionDays": 365,
|
||||
"FileRetentionHours": 0,
|
||||
"BoardsRetentionDays": 365,
|
||||
"DeletionJobStartTime": "02:00",
|
||||
"BatchSize": 3000,
|
||||
"TimeBetweenBatchesMilliseconds": 100,
|
||||
"RetentionIdsBatchSize": 100
|
||||
},
|
||||
"MessageExportSettings": {
|
||||
"EnableExport": false,
|
||||
"ExportFormat": "actiance",
|
||||
"DailyRunTime": "01:00",
|
||||
"ExportFromTimestamp": 0,
|
||||
"BatchSize": 10000,
|
||||
"DownloadExportResults": false,
|
||||
"GlobalRelaySettings": {
|
||||
"CustomerType": "A9",
|
||||
"SMTPUsername": "",
|
||||
"SMTPPassword": "",
|
||||
"EmailAddress": "",
|
||||
"SMTPServerTimeout": 1800,
|
||||
"CustomSMTPServerName": "",
|
||||
"CustomSMTPPort": "25"
|
||||
}
|
||||
},
|
||||
"JobSettings": {
|
||||
"RunJobs": true,
|
||||
"RunScheduler": true,
|
||||
"CleanupJobsThresholdDays": -1,
|
||||
"CleanupConfigThresholdDays": -1
|
||||
},
|
||||
"ProductSettings": {},
|
||||
"PluginSettings": {
|
||||
"Enable": true,
|
||||
"EnableUploads": false,
|
||||
"AllowInsecureDownloadURL": false,
|
||||
"EnableHealthCheck": true,
|
||||
"Directory": "./plugins",
|
||||
"ClientDirectory": "./client/plugins",
|
||||
"Plugins": {
|
||||
"playbooks": {
|
||||
"BotUserID": "casekka8kirsu8szwg1fuzdg4c"
|
||||
}
|
||||
},
|
||||
"PluginStates": {
|
||||
"com.mattermost.apps": {
|
||||
"Enable": true
|
||||
},
|
||||
"com.mattermost.calls": {
|
||||
"Enable": true
|
||||
},
|
||||
"com.mattermost.nps": {
|
||||
"Enable": true
|
||||
},
|
||||
"focalboard": {
|
||||
"Enable": true
|
||||
},
|
||||
"playbooks": {
|
||||
"Enable": true
|
||||
}
|
||||
},
|
||||
"EnableMarketplace": true,
|
||||
"EnableRemoteMarketplace": true,
|
||||
"AutomaticPrepackagedPlugins": true,
|
||||
"RequirePluginSignature": false,
|
||||
"MarketplaceURL": "https://api.integrations.mattermost.com",
|
||||
"SignaturePublicKeyFiles": [],
|
||||
"ChimeraOAuthProxyURL": ""
|
||||
},
|
||||
"DisplaySettings": {
|
||||
"CustomURLSchemes": [],
|
||||
"MaxMarkdownNodes": 0
|
||||
},
|
||||
"GuestAccountsSettings": {
|
||||
"Enable": false,
|
||||
"HideTags": false,
|
||||
"AllowEmailAccounts": true,
|
||||
"EnforceMultifactorAuthentication": false,
|
||||
"RestrictCreationToDomains": ""
|
||||
},
|
||||
"ImageProxySettings": {
|
||||
"Enable": false,
|
||||
"ImageProxyType": "local",
|
||||
"RemoteImageProxyURL": "",
|
||||
"RemoteImageProxyOptions": ""
|
||||
},
|
||||
"CloudSettings": {
|
||||
"CWSURL": "https://customers.mattermost.com",
|
||||
"CWSAPIURL": "https://portal.internal.prod.cloud.mattermost.com",
|
||||
"CWSMock": false,
|
||||
"Disable": false
|
||||
},
|
||||
"ImportSettings": {
|
||||
"Directory": "./import",
|
||||
"RetentionDays": 30
|
||||
},
|
||||
"ExportSettings": {
|
||||
"Directory": "./export",
|
||||
"RetentionDays": 30
|
||||
},
|
||||
"WranglerSettings": {
|
||||
"PermittedWranglerRoles": [],
|
||||
"AllowedEmailDomain": [],
|
||||
"MoveThreadMaxCount": 100,
|
||||
"MoveThreadToAnotherTeamEnable": false,
|
||||
"MoveThreadFromPrivateChannelEnable": false,
|
||||
"MoveThreadFromDirectMessageChannelEnable": false,
|
||||
"MoveThreadFromGroupMessageChannelEnable": false
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
28
conf/traefik-esh/certs/acme.json
Normal file
28
conf/traefik-esh/certs/acme.json
Normal file
File diff suppressed because one or more lines are too long
@@ -40,22 +40,14 @@ entryPoints:
|
||||
# Configure your CertificateResolver here...
|
||||
# ---
|
||||
|
||||
#certificatesResolvers:
|
||||
# pfi:
|
||||
# acme:
|
||||
# email: vh@phasefinal.com
|
||||
# storage: /etc/traefik/certs/acme.json
|
||||
# caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
||||
# dnsChallenge:
|
||||
# provider: route53
|
||||
|
||||
certificatesResolvers:
|
||||
anaprod:
|
||||
pfi:
|
||||
acme:
|
||||
storage: acme.json
|
||||
email: vh@phasefinal.com
|
||||
httpChallenge:
|
||||
entryPoint: web
|
||||
storage: /etc/traefik/certs/acme.json
|
||||
caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
||||
dnsChallenge:
|
||||
provider: route53
|
||||
|
||||
# certificatesResolvers:
|
||||
# staging:
|
||||
Reference in New Issue
Block a user