# Share Report URL

From the GCeasy, FastThread, HeapHero users can click on the 'Share Report' option. It will generate a report's URL. This URL can be shared among team members. If you are running the tool in the 'hostname1' on the port '8080', then generated URL will be of format: 'http://hostname1:8080/yc-report.jsp?' However in some enterprises you might be running yCrash behind web server/Load Balancer which might be mapped to a different domain name.

Example: 'ycrash.mycompany.com'. In this circumstance you would like the generated URL to look like: 'https://ycrash.mycompany.com/yc-report.jsp?'

This feature is supported by adding system property '-DappURLPrefix' in the launch-yc-server.sh script.

Say suppose your current 'launch-yc-server.sh' is looking like this:

java -Xms2g -Xmx4g -DlogDir=. -DuploadDir=. -jar webapp-runner.jar -AconnectionTimeout=3600000 --port 8080 yc.war &
1

Change it to:

java -Xms2g -Xmx4g -DlogDir=. -DappURLPrefix=https://ycrash.mycompany.com -DuploadDir=. -jar webapp-runner.jar -AconnectionTimeout=3600000 --port 8080 yc.war &
1

And then restart the tool. From this point, generated Share URL will look like https://ycrash.mycompany.com/yc-report.jsp?..