Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
  • 316f93fed1be1d6d0aff9eda965e5fcff0d3062e
  • master default protected
  • fix_nzb_cat
  • develop
  • guessit2-minimal
  • ssl_warning
  • UHD-qualities
  • fix_providers8
  • !
  • tvvault
  • provider_alpharatio
  • v5.1.1
  • v5.1
  • v5.0.3
  • v5.0.2
  • v5.0.1
  • v5.0
  • v4.2.1.07
  • v4.2.1.06
  • v4.2.1.05
  • v4.2.1.04
  • v4.2.1.03
  • v4.2.1.02
  • v4.2.1.01
  • v4.2.1.0
  • v4.2.0.6
  • v4.2.0.5
  • v4.2.0.4
  • v4.2.0.3
  • v4.2.0.2
  • v4.2.0.1
31 results

.gitattributes

Blame
  • .env 1.08 KiB
    # IP address to listen to
    SERVER=0.0.0.0
    # port to bind
    PORT=8080
    # Gin framework release mode
    GIN_MODE=release
    # where to write all generated config files
    WG_CONF_DIR=./wireguard
    # WireGuard main config file name, generally <interface name>.conf
    WG_INTERFACE_NAME=wg0.conf
    
    # SMTP settings to send email to clients
    SMTP_HOST=smtp.gmail.com
    SMTP_PORT=587
    SMTP_USERNAME=account@gmail.com
    SMTP_PASSWORD=*************
    SMTP_FROM=Wg Gen Web <account@gmail.com>
    
    # example with gitlab, which is RFC implementation and no need any custom stuff
    OAUTH2_PROVIDER_NAME=oauth2oidc
    OAUTH2_PROVIDER=https://gitlab.com
    OAUTH2_CLIENT_ID=
    OAUTH2_CLIENT_SECRET=
    OAUTH2_REDIRECT_URL=https://wg-gen-web-demo.127-0-0-1.fr
    
    # example with google
    OAUTH2_PROVIDER_NAME=google
    OAUTH2_PROVIDER=
    OAUTH2_CLIENT_ID=
    OAUTH2_CLIENT_SECRET=
    OAUTH2_REDIRECT_URL=
    
    # example with github
    OAUTH2_PROVIDER_NAME=github
    OAUTH2_PROVIDER=https://github.com
    OAUTH2_CLIENT_ID=
    OAUTH2_CLIENT_SECRET=
    OAUTH2_REDIRECT_URL=https://wg-gen-web-demo.127-0-0-1.fr
    
    # set provider name to fake to disable auth, also the default
    OAUTH2_PROVIDER_NAME=fake