# Enable Public Signing By default, the signing methods for [`rippled`](/docs/concepts/networks-and-servers) are limited to [administrative connections](/docs/references/http-websocket-apis/admin-api-methods). If you want to allow signing methods to be used as public API methods (like with versions of `rippled` before v1.1.0), you can enable it with a configuration change. This enables the following methods to be used on "public" [JSON-RPC and WebSocket connections](/docs/tutorials/http-websocket-apis/build-apps/get-started), if your server accepts them: - [sign](/docs/references/http-websocket-apis/admin-api-methods/signing-methods/sign) - [sign_for](/docs/references/http-websocket-apis/admin-api-methods/signing-methods/sign_for) - [submit](/docs/references/http-websocket-apis/public-api-methods/transaction-methods/submit) (in "sign-and-submit" mode) You **do not** need to enable public signing to use these methods from an admin connection. Ripple does not recommend enabling public signing. Like the [wallet_propose method](/docs/references/http-websocket-apis/admin-api-methods/key-generation-methods/wallet_propose), the signing commands do not perform any actions that would require administrative-level permissions, but restricting them to admin connections protects users from irresponsibly sending or receiving secret keys over unsecured communications, or to servers they do not control. To enable public signing, perform the following steps: 1. Edit your `rippled`'s config file. ``` vim /etc/opt/ripple/rippled.cfg ``` 2. Add the following stanza to your config file, and save the changes: ``` [signing_support] true ``` 3. Restart your `rippled` server: ``` systemctl restart rippled ``` ## See Also - **Concepts:** - [Transactions](/docs/concepts/transactions) - [Cryptographic Keys](/docs/concepts/accounts/cryptographic-keys) - **Tutorials:** - [Set Up Secure Signing](/docs/concepts/transactions/secure-signing) - [Get Started Using HTTP / WebSocket APIs](/docs/tutorials/http-websocket-apis/build-apps/get-started) - [Get Started Using JavaScript](/docs/tutorials/javascript/build-apps/get-started) - **References:** - [sign method](/docs/references/http-websocket-apis/admin-api-methods/signing-methods/sign) - [sign_for method](/docs/references/http-websocket-apis/admin-api-methods/signing-methods/sign_for) - [submit method](/docs/references/http-websocket-apis/public-api-methods/transaction-methods/submit)