Automation and setup for sites I own.
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- resource "null_resource" "mitchty_com_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.com.conf"
- destination = "/tmp/https-mitchty.com.conf"
- }
- provisioner "remote-exec" {
- inline = [<<FIN
- install -m644 /tmp/https-mitchty.com.conf /etc/nginx/conf.d/https-mitchty.com.conf
- rm -fr /tmp/https-mitchty.com.conf
- rc-service nginx restart
- FIN
- ]
- }
- }
|