portfolio.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Portfolio Domain
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value is the domain used for the portfolio feature. Only change
  9. | the default value if you have a subdomain configured. You must use
  10. | a subdomain on the same app domain.
  11. |
  12. */
  13. 'domain' => env('PORTFOLIO_DOMAIN', config('pixelfed.domain.app')),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Portfolio Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | This value is the path used for the portfolio feature. Only change
  20. | the default value if you have a subdomain configured. If you want
  21. | to use the root path of the subdomain, leave this value empty.
  22. |
  23. | WARNING: SETTING THIS VALUE WITHOUT A SUBDOMAIN COULD BREAK YOUR
  24. | INSTANCE, SO ONLY CHANGE THIS IF YOU KNOW WHAT YOU'RE DOING.
  25. |
  26. */
  27. 'path' => env('PORTFOLIO_PATH', '/i/portfolio'),
  28. ];