mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 11:48:17 +00:00
Default index.html file and directory used. Can connect via browser on host machine via nginx_service.xml file.
10 lines
268 B
Puppet
10 lines
268 B
Puppet
# The notify before should always come BEFORE all resources
|
|
# managed by the nginx class
|
|
# and the notify last should always come AFTER all resources
|
|
# managed by the nginx class.
|
|
node default {
|
|
notify { 'before': }
|
|
-> class { 'nginx': }
|
|
-> notify { 'last': }
|
|
}
|