By default, ActiveAdmin is running under /admin. Is there any way change that?
Yes. You need to add the following line to the config/initializers/active_admin.rb
file:
config.default_namespace = :your_desired_namespace
This will create a http://yourdomain.name/your_desired_namespace
Do note, that you will need to update your routes accordingly (i.e admin_user_path
will become your_desired_namespace_user_path
).