mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-18 00:57:55 +00:00
Page:
Example Production Settings.JSON
Pages
.pr_agent_accepted_suggestions
010930822
Accessibility
Adding a new font icon to fontawesome etherpad
Alternative clients
Available Plugins
Backing up and Restoring Etherpad Lite Pads
Changeset Library
Community Guidelines for newcomers
Contribution guidelines
Converting from InnoDB to MyISAM
Corporate Recruitment Process Outsourcing Market to Showcase Robust Growth By Forecast to 2034
Creating a plugin
Deploying Etherpad on Cloudron
Deploying Etherpad on alwaysdata
Deploying etherpad lite on Heroku
Developer Guidelines
Embed Parameters
Etherpad Community
Example Development Settings.JSON
Example Production Settings.JSON
FAQ
Getting started writing tests for Etherpad Lite
Getting to know the tools in bin
Gritter
Guidance for Students on Crafting Strong Academic Papers
HTTP API client libraries
HTTP API
Home
How does Etherpad go from a Pad to other formats and vice versa.
How to deploy Etherpad Lite as a service
How to deploy Etherpad Lite on Cloudfoundry
How to deploy Etherpad as a service
How to enable importing and exporting different file formats in Ubuntu or OpenSuse or SLES with AbiWord
How to enable importing and exporting different file formats with AbiWord
How to enable importing and exporting different file formats with LibreOffice
How to enable native XMLHTTP support in IE
How to list all pads
How to migrate from MySQL to PostgreSQL
How to migrate the database from Etherpad to Etherpad Lite
How to put Etherpad Lite behind a reverse Proxy
How to restart Etherpad Lite
How to setup Etherpad on Ubuntu 12.04 using Ansible
How to use EPL outside of a browser
How to use Etherpad Lite with MySQL
How to use Etherpad Lite with PostgreSQL
How to use Etherpad Lite with Redis
How to use Etherpad Lite with jQuery
I18n draft
Introduction to the source
Load Testing Etherpad
Manipulating the database
Meet our users
Merge 2025 FLBBCC
New test page
Optimizing Etherpad
Plugin, a list
Plugin API Draft
Plugin API Hooks
Plugin Wishlist
Plugin dependencies
Plugins Automatically publishing to npm on commit to Github Repo
Providing encrypted web access to Etherpad Lite using SSL certificates (HTTPS: )
Providing encrypted web access to Etherpad Lite using SSL certificates
Release procedure
Running Etherpad on Phusion Passenger
Sites That Run Etherpad
Third party web sites that have support for Etherpad Lite
Tools
Top Crypto to Invest In: Ignite Your 2025 Profit Rocket!
Translating
URI Paths
Understanding Etherpad's Full Data Export capabilities
What isn't covered by testing?
Why there is no apt, yum or npm Etherpad package
iso 22000 internal auditor training
k8s istio config
pheaprabear010@icloud.com
tendances favorables autour des plateformes de jeux en ligne en europe
No results
3
Example Production Settings.JSON
johnyma22 edited this page 2012-11-05 06:20:54 -08:00
/*
This file must be valid JSON. But comments are allowed
Please edit settings.json, not settings.json.template
*/
{
// Name your instance!
"title": "My awesome Etherpad site",
//Ip and port which etherpad should bind at
"ip": "0.0.0.0",
"port" : 9001,
//The Type of the database. You can choose between dirty, postgres, sqlite and mysql
"dbType" : "mysql",
"dbSettings" : {
"user" : "root",
"host" : "localhost",
"password": "",
"database": "store"
},
//the default text of a pad
"defaultPadText" : "Welcome to my AWESOME site!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nGet involved with Etherpad at http:\/\/etherpad.org\n",
/* Users must have a session to access pads. This effectively allows only group pads to be accessed. */
"requireSession" : false,
/* Users may edit pads but not create new ones. Pad creation is only via the API. This applies both to group pads and regular pads. */
"editOnly" : false,
/* if true, all css & js will be minified before sending to the client. This will improve the loading performance massivly,
but makes it impossible to debug the javascript/css */
"minify" : true,
/* How long may clients use served javascript code (in seconds)? Without versioning this
may cause problems during deployment. Set to 0 to disable caching */
"maxAge" : 21600, // 60 * 60 * 6 = 6 hours
/* This is the path to the Abiword executable. Setting it to null, disables abiword.
Abiword is needed to enable the import/export of pads*/
"abiword" : "/usr/bin/abiword",
/* This setting is used if you require authentication of all users.
Note: /admin always requires authentication. */
"requireAuthentication": false,
/* Require authorization by a module, or a user with is_admin set, see below. */
"requireAuthorization": false,
/* Users for basic authentication. is_admin = true gives access to /admin.
If you do not uncomment this, /admin will not be available! */
"users": {
"admin": {
"password": "S3cRet##1",
"is_admin": true
}
},
/* The log level we are using, can be: DEBUG, INFO, WARN, ERROR */
"loglevel": "ERROR",
/* Google Analytics plugin settings */
"ep_googleanalytics":{
"gaCode":"UA-2387498"
}
}
General
Resources
- Docs
- Translating
- HTTP API
- Plugin framework (API hooks)
- Plugins (available)
- Plugins (list)
- Plugins (wishlist)
- Etherpad URIs / URLs to specific resources IE export
- Etherpad Full data export
For Developers
- Introduction to the source
- Release Procedure
- Etherpad Developer guidelines
- Project to-do list
- Changeset Library documentation
- Alternative Etherpad-Clients
- Contribution guidelines
How to's
Set up
- Installing Etherpad
- Deploying Etherpad as a service
- Deploying Etherpad on CloudFoundry
- Deploying Etherpad on Heroku
- Running Etherpad on Phusion Passenger
- Putting Etherpad behind a reverse Proxy (HTTPS/SSL)
- How to setup Etherpad on Ubuntu 12.04 using Ansible
Advanced steps
- Migrating from old Etherpad to Etherpad
- Using Etherpad with MySQL
- Customizing the Etherpad web interface
- Enable import/export functionality with AbiWord
- Getting a list of all pads
- Providing encrypted web access to Etherpad using SSL certificates
- Optimizing Etherpad performance including faster page loads
- Getting to know the tools and scripts in the Etherpad /bin/ folder
Integrating Etherpad in your web app
- Embedding a pad using the jQuery plugin
- Using Embed Parameters
- Integrating Etherpad in a third party app (Drupal, MediaWiki, WordPress, Atlassian, PmWiki)
- HTTP API client libraries