server/.config/constants.php
Ryan McCue 2d3b4b5d15
Add AWS SES WP Mail for email (#22)
Signed-off-by: Ryan McCue <me@ryanmccue.info>
2025-08-18 13:21:32 -05:00

12 lines
360 B
PHP

<?php
// Disable writing to the filesystem.
define( 'DISALLOW_FILE_MODS', true );
// GlotPress configuration.
define( 'GP_URL_BASE', '/' );
define( 'GP_TMPL_PATH', dirname( __DIR__ ) . '/content/plugins/f-translate/templates/' );
// SES configuration.
define( 'AWS_SES_WP_MAIL_REGION', 'us-east-1' );
define( 'AWS_SES_WP_MAIL_USE_INSTANCE_PROFILE', true );