- 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.
37 lines
634 B
Markdown
Executable File
37 lines
634 B
Markdown
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 |