Step 1. In domain management panel create domain alias (CNAME)
www.company.com -> lb.careersitecloud.com.
Step 2. In domain management panel configure domain forwarding
Step 3. In CareeSiteCloud admin go to Wizard and change site address to “Company domain”
Step 4. Verify domain configuration via Dig Toolbox – ANSWER should include lb.careersitecloud.com
Step 1. In domain management panel create domain alias (CNAME)
jobs.company.com -> lb.careersitecloud.com.
Step 2. In CareeSiteCloud admin go to Wizard and change site address to “Company domain”
Step 3. Verify domain configuration via Dig Toolbox – ANSWER should include lb.careersitecloud.com
In case you are unable to set up career site in folder (i.e. due to hosting limitations), please use Option B.
Step 1. Create proxy pass in your’s web server: Example configuration for NGINX. Please refer to your server configuration manual;
set $upserver 'https://lb.careersitecloud.com:443'; location ^~ /jobs { proxy_pass $upserver$request_uri; }
Apache Httpd example
https://httpd.apache.org/docs/current/mod/mod_proxy.html ProxyPass "/jobs" "http://lb.careersitecloud.com" connectiontimeout=5 timeout=30
mod_rewrite provides the [P] flag, which allows URLs to be passed, via mod_proxy, to another server.In example, a URL is passed directly to another server, and served as though it were a local URL.
LoadModule proxy_module modules/mod_rewrite.so <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^jobs(.*) http://lb.careersitecloud.com/jobs$1 [P,L] </IfModule>
Step 2. In CareeSiteCloud admin go to Wizard and change site address to “Company domain”, turn on Folder option
Please get in touch with support by submitting new ticket.