mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 17:51:41 +00:00
18 lines
237 B
Ruby
18 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Genera una versión onion
|
|
class DeployHiddenService < DeployWww
|
|
def deploy
|
|
return true if fqdn.blank?
|
|
|
|
super
|
|
end
|
|
|
|
def fqdn
|
|
values[:onion]
|
|
end
|
|
|
|
def url
|
|
'http://' + fqdn
|
|
end
|
|
end
|