Configure the app
Configure the app for Oracle Opera
After you install the Stripe app for Oracle Opera, you can configure the settings to use the app with your Stripe Terminal integration.
Configure the app parameters
Use Windows File Explorer to navigate to the installation path. Then, edit the appsettings.
file to configure the following app parameters. “Stanza” is the Oracle term for parameter categories.
Stanza | Description |
---|---|
AllowedHosts | The list of IP addresses allowed to listen for the services in this app. |
Listen |
|
Transactional |
|
Token | These settings apply to Opera installations that occur on-premises.
|
Serilog | These settings apply to the log level.
|
Using | Don’t change the values for these system modules that the middleware uses. |
Verify the sample file
Verify that your appsettings.
file looks similar to the following sample:
{ "AllowedHosts": "*", "Listen": { "Dashboard": { "Host": "127.0.0.1", "Port": "8081", "ServerCertificatePath": "certificate.pfx", "ServerCertificatePassword": "1234" }, "Transactional": { "Host": "127.0.0.1", "Port": "8999", "ServerCertificatePath": "certificate.pfx", "ServerCertificatePassword": "1234" }, "Token": { "Host": "127.0.0.1", "Port": "8990", "ClientCertificateAuth": false, "ClientCertificatePath": "../data/sslcerts/cert.pfx", "ClientCertificatePassword": "1111", "ServerCertificatePath": "certificate.pfx", "ServerCertificatePassword": "1234" } }, "Serilog": { "MinimumLevel": { "Default": "Debug", "Override": { "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information", "System.Net.Http.HttpClient": "Warning" } }, "Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File" ] } }
Restart the Windows service
After you edit the appsettings.
file, restart the Windows service by doing the following:
- Press the Windows key on your keyboard.
- Type
services
to open the Services app. - Select Services in the left pane, and then navigate to Stripe OPI App Service in the right pane.
- Click Restart to restart the service and allow you to access the web interface.