Skip to content

Ansible role to install and configure stunnel on Windows.

Notifications You must be signed in to change notification settings

cchurch/ansible-role-win-stunnel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Galaxy

Win-STunnel

Install and configure stunnel on Windows.

Role Variables

Use the following variables to configure stunnel. Configuration values that should be a literal "yes" or "no" should be specified as strings instead of YAML boolean values.

  • stunnel_global_options: A dictionary of global options for stunnel.conf. Default is {}, which does not specify any global options.
  • stunnel_services: A dictionary of services to configure in stunnel.conf. The value of each service entry should be a dictionary of configuration options and values for that service. Default is {}, which does not define any services. At least one service should be defined.

The following variables may be used for more advanced configuration:

  • stunnel_conf_template: Specify an alternate template to use to configure stunnel. The default is "stunnel.conf.j2", which builds a configuration based on stunnel_global_options and stunnel_services defined above.
  • stunnel_download_url: Specify an alternate URL to download the stunnel installer; default is "https://www.stunnel.org/downloads/stunnel-5.41-win32-installer.exe".
  • stunnel_force_install: Force installation of stunnel even if registry keys indicate it is already installed; Default is false.

Example Playbook

The following example playbook installs stunnel and adds a service to forward unencrypted local SMTP connections on port 2525 to smtp.gmail.com port 465:

- hosts: windows
  roles:
    - role: cchurch.win-stunnel
      stunnel_services:
        'gmail-smtp':
          client: 'yes'
          accept: 2525
          connect: smtp.gmail.com:465
          delay: 'yes'

License

BSD

Author Information

Chris Church chris@ninemoreminutes.com

About

Ansible role to install and configure stunnel on Windows.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published