Automation and setup for sites I own.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

23 rader
562 B

  1. resource "null_resource" "mitchty_com_nginx" {
  2. depends_on = [
  3. null_resource.nginx_install,
  4. ]
  5. connection {
  6. host = linode_instance.prod.ip_address
  7. user = "root"
  8. private_key = file("~/.ssh/id_rsa")
  9. }
  10. provisioner "file" {
  11. source = "https-mitchty.com.conf"
  12. destination = "/tmp/https-mitchty.com.conf"
  13. }
  14. provisioner "remote-exec" {
  15. inline = [<<FIN
  16. install -m644 /tmp/https-mitchty.com.conf /etc/nginx/conf.d/https-mitchty.com.conf
  17. rm -fr /tmp/https-mitchty.com.conf
  18. rc-service nginx restart
  19. FIN
  20. ]
  21. }
  22. }