|
|
@@ -7,7 +7,8 @@ export default class PlantUMLConfigurer {
|
|
|
this.crowi = crowi;
|
|
|
const config = crowi.getConfig();
|
|
|
|
|
|
- this.serverUrl = config.env.PLANTUML_URI || 'https://plantuml.com/plantuml';
|
|
|
+ // Do NOT use HTTPS URL because plantuml.com refuse request except from members
|
|
|
+ this.serverUrl = config.env.PLANTUML_URI || 'http://plantuml.com/plantuml';
|
|
|
|
|
|
this.generateSource = this.generateSource.bind(this);
|
|
|
}
|