I set base url for confluence : http://confluence.swtool.review at first
Now, I need to add one more url : http://www.swtool.review from same domain.
Is it possible? Please help..
Atlassian applications need to operate on a single base URL. This is the URL that's going to be used when Confluence (or Jira, or whatever) generates links in the application itself, in emails it sends, and in any external integrations.
You're going to need to decide what the actual URL is you want to use for the application, and use that as the base URL.
Now, it's definitely possible to have other URLs resolve to your Confluence. This will simply listen for requests on the secondary domain and point the browser at the correct primary domain. You'll need some web server (IIS, Apache, nginx, etc) to listen at that other URL (sounds like www.swtool.review in your case) and return the correct Confluence URL.
Here's the server block that would do that for you in nginx - if you're not using nginx, just try googing "<yourwebserver> domain redirect" and following instructions.
server {
server_name www.swtool.review;
return 301 http://confluence.swtool.review$request_uri;
}
I just redirect entry page only.
<VirtualHost *:80>
ServerName www.swtool.review
Redirect / http://confluence.swtool.review/
</VirtualHost>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.