mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-06 10:25:23 +00:00
9dafba9fb6
sls/rsyncd: moved to common; sls/ssl: pki templates were moved to common;
16 lines
312 B
Smarty
16 lines
312 B
Smarty
server {
|
|
include listen;
|
|
{% if ssl %}
|
|
include listen_ssl;
|
|
ssl_certificate {{ ssl_cert_path }};
|
|
ssl_certificate_key {{ ssl_key_path }};
|
|
{% endif %}
|
|
server_name {{ server_name }};
|
|
|
|
include includes/errors.conf;
|
|
|
|
autoindex on;
|
|
gzip_static on;
|
|
root {{ document_root }};
|
|
}
|