-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Description
Steps to reproduce
- Attempt to load /robots.txt
Expected behaviour
The default robots.txt file should be served
Actual behaviour
A redirect is issued since "/robots.txt" is not a RewriteCond in the generated .htaccess file.
If a user is logged in, they are taken to their default page, otherwise the user is redirected to the login page
Server configuration
Operating system:
Ubuntu 16.04.2 LTS
Web server:
Apache2/2.4.18
Database:
Mysql 5.7.17
PHP version:
7.0.15
Nextcloud version: (see Nextcloud admin page)
11.0.2
Updated from an older Nextcloud/ownCloud or fresh install:
Updated
Where did you install Nextcloud from:
Signing status:
Signing status
Integrity checker has been disabled. Integrity cannot be verified.List of activated apps:
App list
- activity: 2.4.1
- apporder: 0.3.3
- checksum: 0.3.4
- comments: 1.1.0
- dav: 1.1.1
- direct_menu: 0.10.1
- federatedfilesharing: 1.1.1
- federation: 1.1.1
- files: 1.6.1
- files_external: 1.1.2
- files_pdfviewer: 1.0.1
- files_sharing: 1.1.1
- files_texteditor: 2.2
- files_trashbin: 1.1.0
- files_versions: 1.4.0
- files_videoplayer: 1.0.0
- firstrunwizard: 2.0
- gallery: 16.0.0
- keeweb: 0.3.0
- logreader: 2.0.0
- lookup_server_connector: 1.0.0
- nextcloud_announcements: 1.0
- notes: 2.2.0
- notifications: 1.0.1
- password_policy: 1.1.0
- provisioning_api: 1.1.0
- serverinfo: 1.1.1
- sharebymail: 1.0.1
- sharerenamer: 1.2
- survey_client: 0.1.5
- systemtags: 1.1.3
- templateeditor: 0.2
- theming: 1.1.1
- twofactor_backupcodes: 1.0.0
- updatenotification: 1.1.1
- user_external: 0.4
- user_ldap: 1.1.2
- workflowengine: 1.1.1
The content of config/config.php:
Config report
{
"system": {
"instanceid": "***REMOVED SENSITIVE VALUE***",
"passwordsalt": "***REMOVED SENSITIVE VALUE***",
"secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": [
"cloud.example.com"
],
"datadirectory": "\/media\/Nextcloud",
"overwrite.cli.url": "https:\/\/cloud.example.com",
"dbtype": "mysql",
"version": "11.0.2.7",
"installed": true,
"dbname": "nextcloud",
"dbhost": "localhost",
"dbport": "",
"dbtableprefix": "",
"dbuser": "***REMOVED SENSITIVE VALUE***",
"dbpassword": "***REMOVED SENSITIVE VALUE***",
"logfile": "\/var\/log\/nextcloud.log",
"loglevel": 2,
"logtimezone": "America\/Chicago",
"logdateformat": "d\/M\/Y:H:i:s O",
"ldapIgnoreNamingRules": false,
"ldapProviderFactory": "\\OCA\\User_LDAP\\LDAPProviderFactory",
"memcache.local": "\\OC\\Memcache\\APCu",
"memcache.locking": "\\OC\\Memcache\\Redis",
"redis": {
"host": "\/var\/run\/redis\/redis.sock",
"port": 0,
"timeout": 1.5
},
"htaccess.RewriteBase": "\/",
"mail_from_address": "nextcloud",
"mail_smtpmode": "php",
"mail_domain": "example.com",
"updater.release.channel": "beta",
"maintenance": false,
"enabledPreviewProviders": [
"OC\\Preview\\PNG",
"OC\\Preview\\JPEG",
"OC\\Preview\\GIF",
"OC\\Preview\\BMP",
"OC\\Preview\\XBitmap",
"OC\\Preview\\MP3",
"OC\\Preview\\TXT",
"OC\\Preview\\MarkDown",
"OC\\Preview\\Movie",
"OC\\Preview\\PDF",
"OC\\Preview\\SVG"
],
"preview_max_x": 1024,
"preview_max_y": 1024
}
}
Are you using external storage, if yes which one: local/smb/sftp/...
Yes, local and smb
Are you using encryption: yes/no
No
Are you using an external user-backend, if yes which one: LDAP/ActiveDirectory/Webdav/...
Yes, LDAP
LDAP configuration (delete this part if not used)
LDAP config
With access to your command line run e.g.:
sudo -u www-data php occ ldap:show-config
from within your Nextcloud installation folder
Without access to your command line download the data/owncloud.db to your local
computer or access your SQL server remotely and run the select query:
SELECT * FROM `oc_appconfig` WHERE `appid` = 'user_ldap';
Eventually replace sensitive data as the name/IP-address of your LDAP server or groups.
Client configuration
Browser:
Chrome 56.0.2924.87 (64-bit)
Operating system:
Windows 10
Logs
Web server error log
Web server error log
Insert your webserver log here
Nextcloud log (data/nextcloud.log)
Nextcloud log
Insert your Nextcloud log here
Browser log
Browser log
Insert your browser log here, this could for example include:
a) The javascript console log
b) The network log
c) ...