Replies: 9 comments
-
|
Thanks for opening your first issue here! Be sure to follow the issue template! |
Beta Was this translation helpful? Give feedback.
-
|
Well this :443 is omitted from the URL ofcourse, since it is https default port. |
Beta Was this translation helpful? Give feedback.
-
|
What is your value for |
Beta Was this translation helpful? Give feedback.
-
|
http://localhost:8080
I am using rbac also (airflow.cfg file rbac = True)
Haven't noticed that any other link is broken except this "Log Url".
Raul
…Sent from my iPhone
On 26. Aug 2020, at 02:29, Kamil Breguła ***@***.***> wrote:
What is your value for base_url option in webserver section ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
|
@raulk89 it should be set to |
Beta Was this translation helpful? Give feedback.
-
|
Why https..?
All other links are fine with http://localhost:8080
Raul
…Sent from my iPhone
On 27. Aug 2020, at 02:18, Kamil Breguła ***@***.***> wrote:
@raulk89 it should be set to https://localhost:8080.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
|
@raulk89, hi, i have the same problem. Did you solve it? I try solutions from this issues, but it doesn't help me .. |
Beta Was this translation helpful? Give feedback.
-
|
The problem is in the link's <td>
<a href="http://localhost:8080/log?execution_date=2023-07-21T00..." data-original-title="" title="">
<span class="material-icons" aria-hidden="true">reorder</span>
</a>
</td>A This URL is:
|
Beta Was this translation helpful? Give feedback.
-
|
Was there ever a solution to this? I am using Airflow 3.1.3 with an nginx proxy. The workers are all behind the proxy and the Airflow UI is external facing. So the log link in the email is http://airflow.internalserver.lan.:8080/ instead of https://example.com/airlfow/. The base_url of the workers is set to the internal link because they can not get outside the lan. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Apache Airflow version: 1.10.11, 1.10.12
Environment: Virtual machine
uname -a): 3.10.0-1127.18.2.el7.x86_64What happened: After executing DAG, I clicked on "running tasks", then opens up this page, where there is "Log Url" link. But this one does not open, since I am using it behind nginx proxy.
What you expected to happen: The "Log Url" should be "https://hostname:443/..."
How to reproduce it:
Just make sure that your ariflow webserver runs on http://localhost:8080, then
# yum install nginxAdd virtualhost conf and add the following:
You can probably get by with just using port 80 also, then you do not need ssl and certs
And then your application opens up http://hostname:80
vi /etc/nginx/conf.d/airflow_webserver_proxy.conf
# systemctl start nginxAnd then open up web browser, start a random DAG, click on "running task" and then there should be this "Log Url"
Anything else we need to know: It happens always.
Beta Was this translation helpful? Give feedback.
All reactions