Automation and setup for sites I own.
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- resource "null_resource" "mitchty_net_nginx" {
- depends_on = [
- null_resource.nginx_install,
- ]
- connection {
- host = linode_instance.prod.ip_address
- user = "root"
- private_key = file("~/.ssh/id_rsa")
- }
- provisioner "file" {
- source = "https-mitchty.net.conf"
- destination = "/tmp/https-mitchty.net.conf"
- }
- provisioner "remote-exec" {
- inline = [<<FIN
- install -m644 /tmp/https-mitchty.net.conf /etc/nginx/conf.d/https-mitchty.net.conf
- rm -fr /tmp/https-mitchty.net.conf
- rc-service nginx restart
- FIN
- ]
- }
- }
|