How do you get to the Nginx configuration
-
@skaughtx0r yeah sometimes it's the same for me, not sure what causes it. But yeah, if it doesn't work, you can just copy it. It's just more consistent if you edit the file in sites-available and not the one in sites-enabled directly.
-
@kevin You can insert the given directive to the nginx.conf file
First open the configuration file:
nano /etc/nginx/nginx.confThen check if the directive server_names_hash_bucket_size already exists. If it does, just change the value to 32 or 64 if you still get the error with 32.
If you don't have the given line, look for
http {
And add it to the next row:
http { server_names_hash_bucket_size 32;
(Or 64, as said above)
Try to verify the config now, it should work.
-
@kevin that's somewhat surprising, but you can still use 128.
-
@kevin nice, welcome to the glorious world of unnoticeable comment characters!
-
I didn't get any, so I guess not.
-
Now i have a different problem.
You can see my site from
californiamotorcyceforum.com and http://198.199.96.7:4567/
if you look at it from the ip address everything works.
If you look at it from the url while signed in, it'll still say "log in/register" and wont have access to the alerts/instant messaging.From the admin it wont let me change any settings.
-
@julian no matter what I try to udate nginx, i get this after checking version:
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_realip_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-auth-pam --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upstream-fair --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-dav-ext-module -
@kevin you can upgrade Nginx to the latest version this way (as you have to use backports
echo deb http://ftp.debian.org/debian wheezy-backports main contrib non-free >> /etc/apt/sources.list apt-get update aptitude -t wheezy-backports install nginx nginx-common nginx-full
Maybe nginx-full is enough, I did it this way just to be sure.
-
@BarveyHirdman Thanks. That did the trick.
Unfortunately the problem's still the same. if you look at the website, it doesnt show that you are logged in. It doesnt show any of the statistics in the light colored boxes on the bottom. Very weird.