Cant Access /otto on MAC

Hello everyone,

After installing ottoFMS on several Macs, I am unable to access the application via “localhost/otto”, “servername/otto”, or “domain/otto”; access is only possible through http://127.0.0.1:3061/otto/.

This suggests that the proxy may not be functioning correctly. Restarting the server, proxy, and FileMaker Server has not resolved the issue. Are any changes required in the proxy configuration, or could there be another reason for this problem?

Thanks for the Help.

Hey @hgi_voegel ,

Welcome in! Which version of OttoFMS did you install? You should not need to make any manual changes to the proxy setup, OttoFMS makes them when it boots up. Do you see any logs in the otto-info.log when you restart OttoFMS? It should have a number of logs about setting up the reverse proxy.

-Kyle

Hey @kduval Thanks for the reply,

Here are the logs:

2025-10-10T10:01:52.609Z info otto internal database up to date
2025-10-10T10:01:52.610Z info Debug logging disabled
2025-10-10T10:01:52.615Z info Listening on http://localhost:3061
2025-10-10T10:01:52.615Z info environment production
2025-10-10T10:01:52.615Z info version 4.13.1
2025-10-10T10:01:52.615Z info node version v20.18.2
2025-10-10T10:01:52.616Z info Creating otto proxy conf file - {file:/Library/FileMaker Server/HTTPServer/conf/extra/httpd-otto-proxy.conf}
2025-10-10T10:01:52.616Z info Creating backup of httpd.conf file - {file:/Library/FileMaker Server/HTTPServer/conf/httpd.conf,backupFile:/Library/FileMaker Server/HTTPServer/conf/httpd.conf.bak}
2025-10-10T10:01:52.618Z info Creating backup of httpd.conf file - {file:/Library/FileMaker Server/HTTPServer/conf/httpd.conf,backupFile:/Library/FileMaker Server/HTTPServer/conf/httpd.conf.bak}
2025-10-10T10:01:52.619Z info updating main http conf
2025-10-10T10:01:52.631Z info started watching offsite backup
2025-10-10T10:01:52.634Z info License status: undefined
2025-10-10T10:01:56.419Z info Restarted httpserver
2025-10-10T10:01:56.419Z info Reverse Proxy installed or updated
2025-10-10T10:05:20.420Z error BadRequestError: Can not connect from a remote address. Use proxy - {service:express-error-handler}
2025-10-10T10:05:20.472Z error BadRequestError: Can not connect from a remote address. Use proxy - {service:express-error-handler}

According to the logs, the proxy appears to be set up correctly and no errors are reported initially. However, once the server is running and I attempt to access the page, the recorded error messages occur.

We are currently using version 4.13.1, which, to my knowledge, should be the latest version, correct?

Also Thanks for helping us out.

Hey @hgi_voegel ,

Do the timestamps of the “Can not connect from a remote address” error in the log correspond with the times you try to access it from a non-localhost address? That is the error which should be appearing when you attempt to access directly via localhost.

Have you made any changes to the filemaker http setup other than what OttoFMS does?

-Kyle

Hi @kduval,

I encounter the “Can not connect from a remote address” error whenever I try to access the /otto page, whether I use localhost, servername.local, or the domain. The only way it works is by going to 127.0.0.1:3061/otto. Interestingly, on Windows machines, we can access the Otto dashboard without any issues using both localhost and the domain.

Do you have any idea what might be causing this? We’re a bit stuck.

Hey @hgi_voegel ,

Could you send me a copy of your /Library/FileMaker Server/HTTPServer/conf/httpd.conf file and your /Library/FileMaker Server/HTTPServer/conf/extra/httpd-otto-proxy.conf file? That seems like a proxy issue, although a fresh install shouldn’t break anything in there.

Also, are there any firewalls or network configuration changes on the server?

-Kyle

Hi @kduval,

the Firewall is disabled on the Mac,
Additionally, there have been no other network configuration changes on the Mac, aside from setting a static IP address.

here is the conf file,

Thank you for your Time.

httpd.conf

#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see 
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log" 
# will be interpreted as '/logs/access_log'.

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to specify a local disk on the
# Mutex directive, if file-based mutexes are used.  If you wish to share the
# same ServerRoot for multiple httpd daemons, you will need to change at
# least PidFile.
#
ServerRoot "${HTTP_ROOT}"

#
# Mutex: Allows you to set the mutex mechanism and mutex file directory
# for individual mutexes, or change the global defaults
#
# Uncomment and change the directory if mutexes are file-based and the default
# mutex file directory is not on a local disk or is not appropriate for some
# other reason.
#
# Mutex default:/private/var/run

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule access_compat_module /usr/libexec/apache2/mod_access_compat.so
LoadModule alias_module /usr/libexec/apache2/mod_alias.so
LoadModule auth_basic_module /usr/libexec/apache2/mod_auth_basic.so
LoadModule authn_core_module /usr/libexec/apache2/mod_authn_core.so
LoadModule authz_core_module /usr/libexec/apache2/mod_authz_core.so
LoadModule authz_groupfile_module /usr/libexec/apache2/mod_authz_groupfile.so
LoadModule authz_host_module /usr/libexec/apache2/mod_authz_host.so
LoadModule authz_user_module /usr/libexec/apache2/mod_authz_user.so
#LoadModule autoindex_module /usr/libexec/apache2/mod_autoindex.so
LoadModule deflate_module /usr/libexec/apache2/mod_deflate.so
LoadModule dir_module /usr/libexec/apache2/mod_dir.so
LoadModule env_module /usr/libexec/apache2/mod_env.so
LoadModule expires_module /usr/libexec/apache2/mod_expires.so
LoadModule filter_module /usr/libexec/apache2/mod_filter.so
LoadModule headers_module /usr/libexec/apache2/mod_headers.so
LoadModule log_config_module /usr/libexec/apache2/mod_log_config.so
LoadModule logio_module /usr/libexec/apache2/mod_logio.so
LoadModule mime_magic_module /usr/libexec/apache2/mod_mime_magic.so
LoadModule mime_module /usr/libexec/apache2/mod_mime.so
#LoadModule mpm_event_module /usr/libexec/apache2/mod_mpm_event.so
LoadModule mpm_prefork_module /usr/libexec/apache2/mod_mpm_prefork.so
#LoadModule mpm_worker_module /usr/libexec/apache2/mod_mpm_worker.so
LoadModule negotiation_module /usr/libexec/apache2/mod_negotiation.so
LoadModule proxy_module /usr/libexec/apache2/mod_proxy.so
LoadModule proxy_ajp_module /usr/libexec/apache2/mod_proxy_ajp.so
LoadModule proxy_balancer_module /usr/libexec/apache2/mod_proxy_balancer.so
LoadModule lbmethod_bybusyness_module /usr/libexec/apache2/mod_lbmethod_bybusyness.so
LoadModule lbmethod_byrequests_module /usr/libexec/apache2/mod_lbmethod_byrequests.so
LoadModule lbmethod_bytraffic_module /usr/libexec/apache2/mod_lbmethod_bytraffic.so
LoadModule proxy_connect_module /usr/libexec/apache2/mod_proxy_connect.so
LoadModule proxy_express_module /usr/libexec/apache2/mod_proxy_express.so
LoadModule proxy_fcgi_module /usr/libexec/apache2/mod_proxy_fcgi.so
LoadModule proxy_ftp_module /usr/libexec/apache2/mod_proxy_ftp.so
LoadModule proxy_http_module /usr/libexec/apache2/mod_proxy_http.so
LoadModule proxy_scgi_module /usr/libexec/apache2/mod_proxy_scgi.so
LoadModule proxy_wstunnel_module /usr/libexec/apache2/mod_proxy_wstunnel.so
LoadModule reqtimeout_module /usr/libexec/apache2/mod_reqtimeout.so
LoadModule rewrite_module /usr/libexec/apache2/mod_rewrite.so
LoadModule setenvif_module /usr/libexec/apache2/mod_setenvif.so
LoadModule slotmem_shm_module /usr/libexec/apache2/mod_slotmem_shm.so
LoadModule socache_shmcb_module /usr/libexec/apache2/mod_socache_shmcb.so
LoadModule ssl_module /usr/libexec/apache2/mod_ssl.so
LoadModule status_module /usr/libexec/apache2/mod_status.so
LoadModule unixd_module /usr/libexec/apache2/mod_unixd.so
LoadModule version_module /usr/libexec/apache2/mod_version.so
LoadModule hfs_apple_module /usr/libexec/apache2/mod_hfs_apple.so

<IfModule unixd_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.  
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User fmserver
Group fmsadmin

</IfModule>

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. admin@your-domain.com
#
ServerAdmin you@example.com

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.example.com:80
ServerName "${SERVER_NAME}"

#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other 
# <Directory> blocks below.
#
<Directory />
    AllowOverride none
    Options None
    Require all denied
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "${HTTP_ROOT}/htdocs"
<Directory "${HTTP_ROOT}/htdocs">
    AllowOverride none
    Options None
    Require all granted
</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<IfModule proxy_http_module>
    RequestHeader unset Expect early
</IfModule>

#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<FilesMatch "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
    Require all denied
</FilesMatch>

<FilesMatch "\.php$">
    Require all denied
</FilesMatch>

#
# Apple specific filesystem protection.
#
<Files "rsrc">
    Require all denied
</Files>
<DirectoryMatch ".*\.\.namedfork">
    Require all denied
</DirectoryMatch>

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
#ErrorLog "/private/var/log/apache2/error_log"
ErrorLog "||/usr/sbin/rotatelogs '/Library/FileMaker Server/HTTPServer/logs/error_log' 10M"

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" secure

    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    #
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    #
    #CustomLog "/private/var/log/apache2/access_log" common
    CustomLog "||/usr/sbin/rotatelogs '/Library/FileMaker Server/HTTPServer/logs/access_log' 10M" common

    #
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog "/private/var/log/apache2/access_log" combined
</IfModule>

<IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to 
    # exist in your server's namespace, but do not anymore. The client 
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar

    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.

    #
    # ScriptAlias: This controls which directories contain server scripts. 
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    #ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-Executables/$1"
    #ScriptAlias /cgi-bin/ "${HTTP_ROOT}/cgi-bin/"

</IfModule>

<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock cgisock
</IfModule>

#
# "/Library/WebServer/CGI-Executables" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#

<IfModule mime_module>
    #
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    #
    #TypesConfig /private/etc/apache2/mime.types
    TypesConfig conf/mime.types

    #
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi

    # For type maps (negotiated resources):
    #AddHandler type-map var

    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
</IfModule>

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
<IfModule mime_magic_module>
MIMEMagicFile conf/magic
</IfModule>

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited

#
# EnableMMAP and EnableSendfile: On systems that support it, 
# memory-mapping or the sendfile syscall may be used to deliver
# files.  This usually improves server performance, but must
# be turned off when serving from networked-mounted 
# filesystems or if support for these functions is otherwise
# broken on your system.
# Defaults: EnableMMAP On, EnableSendfile Off
#
#EnableMMAP off
#EnableSendfile on

TraceEnable off

# Supplemental configuration
#
# The configuration files in the /private/etc/apache2/extra/ directory can be 
# included to add extra features or to modify the default configuration of 
# the server, or you may simply copy their contents here and change as 
# necessary.

# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf

# Multi-language error messages
Include conf/extra/httpd-multilang-errordoc.conf

<IfModule autoindex_module>
# Fancy directory listings
Include conf/extra/httpd-autoindex.conf
</IfModule>

# Language settings
Include conf/extra/httpd-languages.conf

# User home directories
#Include conf/extra/httpd-userdir.conf

# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf

# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf

# Various default settings
Include conf/extra/httpd-default.conf

# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>

# Secure (SSL/TLS) connections
Include conf/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

Header unset Accept-Ranges

# Prevent Clickjacking attack
Header set X-Frame-Options SAMEORIGIN

# Reduce MIME type security risks
<Location "/fmi">
	Header set X-Content-Type-Options nosniff
	
	# Set cookie expiration date (12 hours in seconds), path and httponly
	Header edit Set-Cookie ^(.*(JSESSIONID).*)$ $1;Max-Age=43200
</Location>

# Prevent cross-site scripting (XSS) attack
Header set X-XSS-Protection "1; mode=block"

# Add headers for Cross-Origin Resource Sharing (CORS) policies
Header set Access-Control-Allow-Origin ${SERVER_NAME}
Header set Access-Control-Allow-Headers "Content-Type, Authorization"
Header set Access-Control-Allow-Credentials "true"

# Standby Server
# Include conf/extra/http-ss.conf

# Reverse Proxy configuration
Include conf/extra/httpd-proxy.conf

# FileMaker AdminServer configuration
# Delete httpd-fmsadminserver.conf instead of comment out it for FAC port change from 16000 to 443
Include conf/extra/httpd-fmsadminserver.conf

# Rewrite settings
Include conf/extra/httpd-rewrite.conf

# WebDirect Proxy configuration
Include conf/extra/httpd-proxy-fmiwebd.conf

Alias /fmi-test "/Library/FileMaker Server/Web Publishing/web-server-support/test/fmi-test"
<Directory "/Library/FileMaker Server/Web Publishing/web-server-support/test/fmi-test">
    AllowOverride None
    Options None
    Require all granted
</Directory>

#Admin Console restriction access
#To grant remote access for Admin Console, you can uncomment the following with IP address
#<Location "/admin-console">
#   Require all denied
#   Require ip <IP-Address-to-Grant_Access>
#</Location>

#Otto Proxy configuration
Include conf/extra/httpd-otto-proxy.conf

httpd-otto-proxy.conf

<Location /otto/>
SSLRequireSSL
ProxyPreserveHost On
Header set 'Access-Control-Allow-Origin' '*'
Header append 'Access-Control-Allow-Headers' 'tus-resumable'
Header append 'Access-Control-Allow-Headers' 'upload-length'
Header append 'Access-Control-Allow-Headers' 'upload-metadata'
Header append 'Access-Control-Allow-Headers' 'upload-offset'
ProxyPass http://127.0.1:3061/otto/ timeout=1800
ProxyPassReverse http://127.0.0.1:3061/otto/
   # Proxy WebSocket s
   RewriteEngine On
   RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
   RewriteCond %{HTTP:CONNECTION} ^Upgrade$ [NC]
   RewriteRule .* ws://127.0.0.1:3061%{REQUEST_URI} [P]
</Location>


Well that looks completely normal. I think the best next step would be to sign up for a session at office hours so you can hop on with us and troubleshoot in real time.

-Kyle

Hi, on a Mac Mini M4 , unfortunatelly i have te same error ( and i have intsall otto probably more than 80 times in different machine … )

@alecorticelli Do you have anything in your logs or http conf files that is different than the rest of the thread? Is OttoFMS accessible from the 127 hostname on the machine? Do you have anything else installed on the mac that is changing the http setup for FileMaker?

-Kyle

hi, my configuration is standard an dowrk on the old server, unfortunatelly for a problem on the NIC i was obbliged to change hardware all works . only OTTO not lunch i see taht may be is a problem with the ssl, i got some truble to install , but now is greate and otto conine to not load . i hev full disinstall several time and try to install using siliocn app and terminal …

if you want we can make a quick zoom video sharing on the server, let me know!

If you want to make a video to send along I’ll look. I’ll also need to see the otto-info.log and what you see when you try to load OttoFMS.

-Kyle

video of what ?
of the error ?
i send here ?

I’ll need the error and the logs. Screenshots and copies of the logs will probably be easier to send than a video.

-Kyle

the logs of filemaker or the isnatlelr of otto can you share the location of otto please?

here the OTTOlogs
OTTOlogs.zip (4.3 KB)

Your logs look like OttoFMS is working properly, the screenshot you sent it of the base path on the filemaker server. What do you see when you go to https://server.hostname/otto/app/ ?

-Kyle

with your url load ottofms, but in the other server y simply use localhost/otto/ and he laod everythigs why this opne i need to specify app ?