voxpupuli / puppet-nginx

Puppet Module to manage NGINX on various UNIXes
https://forge.puppet.com/puppet/nginx
MIT License
470 stars 881 forks source link

Fix http_raw_prepend/append indentation #1608

Open matejzero opened 2 months ago

matejzero commented 2 months ago

Pull Request (PR) description

http_raw_prepend and http_raw_append have wrong indentation. Example with current template:

  ssl_stapling_verify       off;

    real_ip_header X-Forwarded-For;
    set_real_ip_from 1.2.3.4;

  include /etc/nginx/conf.d/*.conf;

This MR removes 2 extra spaces.

matejzero commented 2 months ago

I can live with that, I think it's only a cosmetic fix.