100% Free & Open

Debian 9 Configuration Files

Original, unaltered Debian 9 config files from fresh installations

74 Debian 9 Configuration Files

Original, unaltered configurations from fresh installations

/etc/apt/apt.conf.d/docker-clean
APT Debian 9 (Stretch)

APT - /etc/apt/apt.conf.d/docker-clean

πŸ“ Debian 9 (Stretch)

# Since for most Docker users, package installs happen in "docker build" steps,
# they essentially become individual layers due to the way Docker handles
# layering, especially using CoW filesystems.…
20 lines β€’ MD5: aafe213f... Click to view full file
/etc/apt/apt.conf.d/docker-autoremove-suggests
APT Debian 9 (Stretch)

APT - /etc/apt/apt.conf.d/docker-autoremove-suggests

πŸ“ Debian 9 (Stretch)

# Since Docker users are looking for the smallest possible final images, the
# following emerges as a very common pattern:

#   RUN apt-get update \
#       && apt-get install -y <packages> \
#      …
17 lines β€’ MD5: e99ea2a4... Click to view full file
/etc/apt/apt.conf.d/70debconf
APT Debian 9 (Stretch)

APT - /etc/apt/apt.conf.d/70debconf

πŸ“ Debian 9 (Stretch)

// Pre-configure all packages with debconf before they are installed.
// If you don't like it, comment it out.
DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt || true";};
4 lines β€’ MD5: 7e9d09d5... Click to view full file
/etc/apt/apt.conf.d/01autoremove
APT Debian 9 (Stretch)

APT - /etc/apt/apt.conf.d/01autoremove

πŸ“ Debian 9 (Stretch)

APT
{
  NeverAutoRemove
  {
	"^firmware-linux.*";
	"^linux-firmware$";
  };

  VersionedKernelPackages
  {
	# linux kernels
	"linux-image";
	"linux-headers";
	"linux-image-extra";
	"linux-signed-imag…
49 lines β€’ MD5: 0b1391c0... Click to view full file
/etc/logrotate.d/postgresql-common
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/logrotate.d/postgresql-common

πŸ“ Debian 9 (Stretch)

/var/log/postgresql/*.log {
       weekly
       rotate 10
       copytruncate
       delaycompress
       compress
       notifempty
       missingok
       su root root
}
11 lines β€’ MD5: 101326ef... Click to view full file
/etc/systemd/postgresql@.service
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/systemd/postgresql@.service

πŸ“ Debian 9 (Stretch)

# systemd service template for PostgreSQL clusters. The actual instances will
# be called "postgresql@version-cluster", e.g. "postgresql@9.3-main". The
# variable %i expands to "version-cluster", %I …
34 lines β€’ MD5: c60e225d... Click to view full file
/etc/systemd/postgresql.service
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/systemd/postgresql.service

πŸ“ Debian 9 (Stretch)

# systemd service for managing all PostgreSQL clusters on the system. This
# service is actually a systemd target, but we are using a service since
# targets cannot be reloaded.

[Unit]
Description=P…
16 lines β€’ MD5: a2c1c784... Click to view full file
/etc/postgresql/9.6/main/postgresql.conf
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/postgresql/9.6/main/postgresql.conf

πŸ“ Debian 9 (Stretch)

# -----------------------------
# PostgreSQL configuration file
# -----------------------------
#
# This file consists of lines of the form:
#
#   name = value
#
# (The "=" is optional.)  Whitespace …
648 lines β€’ MD5: 42afa934... Click to view full file
/etc/postgresql/9.6/main/environment
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/postgresql/9.6/main/environment

πŸ“ Debian 9 (Stretch)

# environment variables for postgres processes
# This file has the same syntax as postgresql.conf:
#  VARIABLE = simple_value
#  VARIABLE2 = 'any value!'
# I. e. you need to enclose any value which d…
8 lines β€’ MD5: a567730a... Click to view full file
/etc/postgresql/9.6/main/pg_ident.conf
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/postgresql/9.6/main/pg_ident.conf

πŸ“ Debian 9 (Stretch)

# PostgreSQL User Name Maps
# =========================
#
# Refer to the PostgreSQL documentation, chapter "Client
# Authentication" for a complete description.  A short synopsis
# follows.
#
# This …
43 lines β€’ MD5: f11c8332... Click to view full file
/etc/postgresql/9.6/main/pg_hba.conf
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/postgresql/9.6/main/pg_hba.conf

πŸ“ Debian 9 (Stretch)

# PostgreSQL Client Authentication Configuration File
# ===================================================
#
# Refer to the "Client Authentication" section in the PostgreSQL
# documentation for a co…
100 lines β€’ MD5: cbf62fe3... Click to view full file
/etc/postgresql/9.6/main/pg_ctl.conf
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/postgresql/9.6/main/pg_ctl.conf

πŸ“ Debian 9 (Stretch)

# Automatic pg_ctl configuration
# This configuration file contains cluster specific options to be passed to
# pg_ctl(1).

pg_ctl_options = ''
6 lines β€’ MD5: 242d50c2... Click to view full file
/etc/postgresql/9.6/main/start.conf
PostgreSQL Debian 9 (Stretch)

PostgreSQL - /etc/postgresql/9.6/main/start.conf

πŸ“ Debian 9 (Stretch)

# Automatic startup configuration
#   auto: automatically start the cluster
#   manual: manual startup with pg_ctlcluster/postgresql@.service only
#   disabled: refuse to start cluster
# See pg_creat…
9 lines β€’ MD5: 9bb73ac2... Click to view full file
/etc/odoo/odoo.conf
Odoo Debian 9 (Stretch)

Odoo - /etc/odoo/odoo.conf

πŸ“ Debian 9 (Stretch)

[options]
addons_path = /mnt/extra-addons
data_dir = /var/lib/odoo
; admin_passwd = admin
; csv_internal_sep = ,
; db_maxconn = 64
; db_name = False
; db_template = template1
; dbfilter = .*
; debug_…
38 lines β€’ MD5: 525a8655... Click to view full file