mirror of
https://github.com/iv-org/invidious.git
synced 2025-05-31 14:11:54 +05:30
Change bind_unix to socket_binding, add socket_permissions and config example
This commit is contained in:
@@ -248,11 +248,15 @@ Kemal.config.app_name = "Invidious"
|
||||
{% end %}
|
||||
|
||||
Kemal.run do |config|
|
||||
if CONFIG.bind_unix
|
||||
if File.exists?(CONFIG.bind_unix.not_nil!)
|
||||
File.delete(CONFIG.bind_unix.not_nil!)
|
||||
if CONFIG.socket_binding
|
||||
if File.exists?(CONFIG.socket_binding.not_nil!)
|
||||
File.delete(CONFIG.socket_binding.not_nil!)
|
||||
end
|
||||
config.server.not_nil!.bind_unix CONFIG.bind_unix.not_nil!
|
||||
# Create a socket and set its desired permissions
|
||||
server = UNIXServer.new(CONFIG.socket_binding.not_nil!)
|
||||
perms = CONFIG.socket_permissions.to_i(base: 8)
|
||||
File.chmod(CONFIG.socket_binding.not_nil!, perms)
|
||||
config.server.not_nil!.bind server
|
||||
else
|
||||
Kemal.config.host_binding = Kemal.config.host_binding != "0.0.0.0" ? Kemal.config.host_binding : CONFIG.host_binding
|
||||
Kemal.config.port = Kemal.config.port != 3000 ? Kemal.config.port : CONFIG.port
|
||||
|
@@ -138,8 +138,10 @@ class Config
|
||||
property port : Int32 = 3000
|
||||
# Host to bind (overridden by command line argument)
|
||||
property host_binding : String = "0.0.0.0"
|
||||
# Make Invidious listening on UNIX sockets - Example: /tmp/invidious.sock
|
||||
property bind_unix : String? = nil
|
||||
# Make Invidious listen on a UNIX socket instead of a TCP port - Example: /tmp/invidious.sock
|
||||
property socket_binding : String? = nil
|
||||
# Permissions of the listening socket in octal
|
||||
property socket_permissions : String = "777"
|
||||
# Pool size for HTTP requests to youtube.com and ytimg.com (each domain has a separate pool of `pool_size`)
|
||||
property pool_size : Int32 = 100
|
||||
# HTTP Proxy configuration
|
||||
|
Reference in New Issue
Block a user