2017-08-03 00:07:38 +05:30
|
|
|
|
.row
|
|
|
|
|
|
.col-md-12
|
|
|
|
|
|
%h1
|
|
|
|
|
|
Custom domain
|
|
|
|
|
|
%p.text-muted
|
|
|
|
|
|
Point your own domain to #{@conference.title}
|
|
|
|
|
|
%hr
|
|
|
|
|
|
.row
|
|
|
|
|
|
.col-md-12
|
|
|
|
|
|
%table.table
|
|
|
|
|
|
%thead
|
|
|
|
|
|
%th Domain Name
|
|
|
|
|
|
%th Correctly points to #{@conference.short_title}
|
|
|
|
|
|
%th Actions
|
|
|
|
|
|
%tbody
|
|
|
|
|
|
%tr
|
|
|
|
|
|
%td
|
|
|
|
|
|
= @conference.custom_domain
|
|
|
|
|
|
%td
|
2017-08-22 12:49:37 +05:30
|
|
|
|
- if ENV['OSEM_HOSTNAME'].present?
|
|
|
|
|
|
- ck_domain = ConferenceDomainsService.new(@conference).check_custom_domain
|
|
|
|
|
|
- if ck_domain
|
|
|
|
|
|
%span.glyphicon.glyphicon-ok
|
|
|
|
|
|
- else
|
|
|
|
|
|
%span.glyphicon.glyphicon-remove
|
2017-08-08 22:47:04 +05:30
|
|
|
|
- else
|
|
|
|
|
|
%i
|
2017-08-22 12:49:37 +05:30
|
|
|
|
feature disabled
|
2017-08-03 00:07:38 +05:30
|
|
|
|
%td
|
|
|
|
|
|
.btn-group
|
2017-08-19 13:57:09 +05:30
|
|
|
|
= link_to 'Edit', admin_conference_conference_domains_edit_path(@conference.short_title),
|
2017-08-03 00:07:38 +05:30
|
|
|
|
method: :get, class: 'btn btn-primary'
|
2017-08-05 01:53:59 +05:30
|
|
|
|
= link_to 'Delete', admin_conference_path(@conference.short_title),
|
2017-08-03 00:07:38 +05:30
|
|
|
|
method: :delete, class: 'btn btn-danger'
|
|
|
|
|
|
.row
|
|
|
|
|
|
.col-md-9.text-right
|
|
|
|
|
|
= link_to '#status-help', class: 'btn btn-default', "data-toggle"=>"collapse" do
|
2017-08-19 13:57:09 +05:30
|
|
|
|
Need Help?
|
2017-08-03 00:07:38 +05:30
|
|
|
|
.row
|
|
|
|
|
|
.col-md-12
|
|
|
|
|
|
.collapse#status-help
|
|
|
|
|
|
%h2
|
|
|
|
|
|
Instructions to add your own domain
|
|
|
|
|
|
%hr
|
|
|
|
|
|
%p
|
2017-08-19 13:57:09 +05:30
|
|
|
|
Normally, your conference's splash page is available at:
|
2017-08-03 00:07:38 +05:30
|
|
|
|
%strong
|
|
|
|
|
|
osem.io/conferences/#{@conference.short_title}
|
|
|
|
|
|
%p
|
|
|
|
|
|
However, we also provide support for hosting conferences on your own domain.
|
|
|
|
|
|
|
|
|
|
|
|
Terms to get familiar with:
|
|
|
|
|
|
%p
|
|
|
|
|
|
%strong
|
|
|
|
|
|
Domain registrar:
|
|
|
|
|
|
Domain registrar is just another term used for providers who work on reserving domain names.
|
|
|
|
|
|
%p
|
|
|
|
|
|
%strong
|
|
|
|
|
|
CNAME:
|
|
|
|
|
|
A Canonical Name record is a resource used which defines that your domain name is an alias for another domain name.
|
|
|
|
|
|
%p
|
2017-08-08 22:47:04 +05:30
|
|
|
|
To add your own domain you can follow these
|
2017-08-03 00:07:38 +05:30
|
|
|
|
%i
|
|
|
|
|
|
three
|
|
|
|
|
|
steps:
|
|
|
|
|
|
%ol
|
|
|
|
|
|
%li
|
|
|
|
|
|
Pick a domain you want to host your conference on from a domain registrar or register it with a domain registrar.
|
|
|
|
|
|
%li
|
2017-08-19 13:57:09 +05:30
|
|
|
|
Add your own domain name to OSEM
|
2017-08-22 12:49:37 +05:30
|
|
|
|
= link_to 'here', admin_conference_conference_domains_edit_path(@conference.short_title)
|
2017-08-03 00:07:38 +05:30
|
|
|
|
%li
|
2017-08-19 13:57:09 +05:30
|
|
|
|
The last step is adding a CNAME record in your registrar’s DNS Settings.
|
|
|
|
|
|
Different registrars have different ways of adding a CNAME record.
|
|
|
|
|
|
The following guides would help you setup a CNAME record depending upon the registrar of your domain.
|
|
|
|
|
|
If it doesn’t, you probably should get in touch with your domain registrar and ask him how to register a CNAME record in their platform.
|
2017-08-03 00:07:38 +05:30
|
|
|
|
%ul
|
2017-08-08 22:47:04 +05:30
|
|
|
|
%li
|
2017-08-03 00:07:38 +05:30
|
|
|
|
= link_to 'GoDaddy', 'https://in.godaddy.com/help/add-a-cname-record-19236'
|
2017-08-08 22:47:04 +05:30
|
|
|
|
%li
|
2017-08-03 00:07:38 +05:30
|
|
|
|
= link_to 'Namecheap', 'https://www.namecheap.com/support/knowledgebase/article.aspx/9646/2237/how-can-i-set-up-a-cname-record-for-my-domain'
|
|
|
|
|
|
%li
|
|
|
|
|
|
= link_to 'BlueHost', 'https://my.bluehost.com/cgi/help/cname#creating_a_cname'
|
|
|
|
|
|
%li
|
|
|
|
|
|
= link_to '12-reg.co.uk', 'https://www.123-reg.co.uk/support/answers/Domains/Domain-Configuration/how-do-i-set-up-a-cname-record-on-my-domain-name-1198/'
|
2017-08-05 01:53:59 +05:30
|
|
|
|
%li
|
|
|
|
|
|
= link_to '1&1', 'https://help.1and1.com/domains-c36931/manage-domains-c79822/dns-c37586/enter-a-cname-for-your-subdomain-a643600.html'
|