mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:21:42 +00:00
19 lines
237 B
Ruby
19 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
|