Revert "Ask for proxy URL if proxy enabled."
authoreal <eal@waifu.club>
Thu, 19 Apr 2018 10:29:14 +0000 (13:29 +0300)
committereal <eal@waifu.club>
Thu, 19 Apr 2018 10:29:14 +0000 (13:29 +0300)
The most common case is running it on the same server.

lib/mix/tasks/generate_config.ex
lib/mix/tasks/sample_config.eex

index ae9ac3b75bd98d2ff8f6033de69e048212fd5cef..bfd18d22e0cc6264a9bb3c93cd794056967c8d47 100644 (file)
@@ -15,14 +15,6 @@ defmodule Mix.Tasks.GenerateConfig do
       |> String.downcase()
       |> String.starts_with?("y")
 
-    proxy_url =
-      if mediaproxy do
-        IO.gets("What is the mediaproxy's URL? (e.g. https://cache.example.com): ")
-        |> String.trim()
-      else
-        "https://cache.example.com"
-      end
-
     secret = :crypto.strong_rand_bytes(64) |> Base.encode64() |> binary_part(0, 64)
     dbpass = :crypto.strong_rand_bytes(64) |> Base.encode64() |> binary_part(0, 64)
 
index 9330fae2dec2ce315009b104094997e9b6c70565..05f11c95db3235a4e3dd6da254e7e5337936eccc 100644 (file)
@@ -13,7 +13,7 @@ config :pleroma, :instance,
 config :pleroma, :media_proxy,
   enabled: <%= mediaproxy %>,
   redirect_on_failure: true,
-  base_url: "<%= proxy_url %>"
+  #base_url: "https://cache.pleroma.social"
 
 # Configure your database
 config :pleroma, Pleroma.Repo,