Files
document-server-integration/web/welcome/index.html
Sergey Linnik 8050ec572a apache
2020-09-02 12:06:52 +03:00

90 lines
4.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<!--
*
* (c) Copyright Ascensio System SIA 2020
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
-->
<title>ONLYOFFICE Integration Edition</title>
<link href="css/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:900,800,700,600,500,400,300&subset=latin,cyrillic-ext,cyrillic,latin-ext" />
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
</head>
<body>
<header>
<a href="">
<img src="css/logo.png" alt="ONLYOFFICE">
</a>
</header>
<div class="main-panel">
<span class="portal-name">ONLYOFFICE Integration Edition Welcome!</span>
<br>
<br>
<span class="portal-descr">Congratulations! Your Document Server has successfully started. Now you can integrate ONLYOFFICE collaborative online document editing into your Web Application and use this Integration Edition to open, edit and save your own documents with the most popular file formats, such as .DOCX, .XLSX, .PPTX, etc. Our editors are fully implemented in HTML5!</span>
<ul class="features-list">
<li>Open, Edit and Save existing documents for in-browser editing using ONLYOFFICE Server documents.</li>
<li>Collaborative co-editing functions chat, comments and other multi-user features.</li>
<li>Use of Auto-save function.</li>
<li>All editing operations are processed on this virtual machine. Your documents stay under your complete control.</li>
</ul>
<br>
<div class="help-block">
<span>Want to learn the magic?</span>
<br>
Explore ONLYOFFICE Integration Edition <a href="http://api.onlyoffice.com/editors/howitworks" target="_blank">API Documentation.</a>
</div>
<br>
<div class="help-block">
<span>Still not sure where to start?</span>
<br>
Give a try to our test example which will allow you to upload your own local Office files from your computer for testing. It can be easily run with the following commands:
<pre>sudo docker exec $(sudo docker ps -q) sudo supervisorctl start onlyoffice-documentserver:example</pre>
Add the example to the autostart:
<pre>sudo docker exec $(sudo docker ps -q) sudo sed 's,autostart=false,autostart=true,' -i /etc/supervisor/conf.d/onlyoffice-documentserver-example.conf</pre>
Once started the example will be available <a href="/example">here</a>.
<br>
Please note, that the example is used for demonstration purposes only and it can be accessed by anyone. Once you finish examining it, we recommend that you disable this example for security reasons.
</div>
<br>
<div class="help-block">
<span>Have license?</span>
<br>
If you bought Document Server and received the license.lic file, you can place it to your installation to obtain the software full version. In case you are a Debian based Linux distributive user, the license file is placed to the following folder:
<pre>/var/www/onlyoffice/Data/license.lic</pre>
In case you are using the docker container, the license.lic file can be placed to any folder (e.g. /opt/onlyoffice/Data/license.lic), but you will need to mount this folder when the container starts:
<pre>docker run -itd -p 80:80 \
-v /opt/onlyoffice/Data:/var/www/onlyoffice/Data \
onlyoffice4enterprise/documentserver-ee</pre>
</div>
<br>
<div class="help-block">
<span>Any questions?</span>
<br>
Please, <a href="mailto:sales@onlyoffice.com">submit your request here</a>.
</div>
</div>
<footer>© Ascensio Systems SIA 2020. All rights reserved.</footer>
</body>
</html>