Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anonymous http in phabricator

Tags:

phabricator

How to configure phabricator to support anonymous http?

I follow the official guide, it seems use http for repositories hosting required

diffusion.allow-http-auth is enabled,

But I want to enable anonymous http, how to do that?

like image 559
viclm Avatar asked Oct 19 '22 04:10

viclm


2 Answers

Based on what you're asking I'm assuming public access versus user access. Link

Otherwise I don't think it's possible for security purposes.

like image 134
Jorden Avatar answered Jan 04 '23 05:01

Jorden


It is more than a year since the question was posted, but here is the answer if someone bumps into this:

  1. For HTTP repository access you need to enable diffusion.allow-http-auth as you did.
  2. For general anonymous access to Phabricator you need to enable policy.allow-public, as mentioned in the Answer @Jorden linked to.
  3. Now for specific repository public access (Anonymous), you need to set the Visible policy for the repository to Public (No login required).

Hope this helps

like image 21
Yehuda Deutsch Avatar answered Jan 04 '23 06:01

Yehuda Deutsch