Files
windyboy daf4aa3dfa Add P.A.R.A. methodology documentation and restructure Personal folder
- Created Methodology.md to outline the P.A.R.A. system and its components.
- Added Outline.md for a structured overview of P.A.R.A. content.
- Documented PKM content organization decisions in PKM-Consolidation-Decision.md.
- Introduced Workflows.md to explain practical applications of P.A.R.A. in work scenarios.
- Moved sensitive information to security-sensitive folder and restructured the Personal folder to align with P.A.R.A. principles.
- Archived backup files including Matrix Me.md and TTG Cookies.md.
- Implemented a comprehensive refactor of the Personal folder to improve organization and security.
2025-12-29 15:37:17 +08:00

634 B
Executable File

version: '3'

services: squid: image: sameersbn/squid volumes: - ./squid.conf:/etc/squid/squid.conf:ro - squid_cache:/var/spool/squid ports: - "3128" networks: - proxy

nghttpx: image: nghttpx/nghttpx command: nghttpx -f /etc/nghttpx/nghttpx.conf volumes: - ./nghttpx.conf:/etc/nghttpx/nghttpx.conf:ro environment: - http_proxy=http://squid:3128 - https_proxy=http://squid:3128 - no_proxy=localhost,127.0.0.1,172.20.* ports: - "80" networks: - proxy

volumes: squid_cache:

networks: proxy: external: true name: npm