Automation and setup for sites I own.
Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- 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
- ]
- }
- }
|