タグ付けされた質問 「nginx」

nginxは、オープンソースのWebサーバーであり、HTTP、SMTP、POP3、IMAPプロトコル用のリバースプロキシであり、高性能と低メモリ使用を目的としています。

2
暗号化しましょう-nginx-OCSPステープリング
nginxサーバーでOCSPステープルを有効にしたいのですが。私は使っています nginxバージョン:nginx / 1.6.2 Debian 証明書を暗号化しましょう 私はこのことについては未経験なので、ささいな問題かもしれません。 ここに私のnginxセキュリティ設定 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_dhparam /etc/ssl/private/dhparams_4096.pem; ここに私のサイト/サーバーのセキュリティ設定: add_header Strict-Transport-Security "max-age=31536000; includeSubdomains; preload"; # All files have been generated by Let's encrypt ssl_certificate /etc/letsencrypt/live/myexample.org/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/myexample.org/privkey.pem; # Everything below this line was added to enable OCSP stapling # What …
11 nginx  ssl 

5
cronジョブでのnginx logrotateエラー
私は、Ubuntu 14.04 LTSとnginxをDigital Ocean VPSで実行しており、cronジョブの失敗に関する次のメールをときどき受け取ります。 件名 cronテスト-x / usr / sbin / anacron || (cd / && run-parts --report /etc/cron.daily) メールの本文は次のとおりです。 /etc/cron.daily/logrotate:エラー: '/var/log/nginx/*.log'の共有postrotateスクリプトの実行中にエラーが発生しましたrun-parts:/etc/cron.daily/logrotateが戻りコード1で終了しました これを解決する方法について何か考えはありますか? 更新: /var/log/nginx/*.log { weekly missingok rotate 52 compress delaycompress notifempty create 0640 www-data adm sharedscripts prerotate if [ -d /etc/logrotate.d/httpd-prerotate ]; then \ run-parts /etc/logrotate.d/httpd-prerotate; \ …
10 ubuntu  cron  nginx  logrotate 

2
Nginxはポートでリッスンし、ポート80に設定されている場合のみ応答します
OS:Funtoo。NGINXをポート81にバインドし(移行を容易にするために、Apacheサーバーと一緒に短時間実行したい)、ポートでリッスンします(別のポートを指す場合、wgetを使用すると、「接続が拒否されました」と表示されます。しかし、ポート81を使用すると、「接続」されます)が、それは、いかなる種類のHTML応答も提供しません。 ローカルホストからポートでwgetを実行すると、次のようになります。 # wget localhost:81 -2014-04-16 23:56:45- http://localhost:81/ Resolving localhost... 127.0.0.1 Connecting to localhost|127.0.0.1|:81... connected. HTTP request sent, awaiting response... 別のコンピューターで... $ wget 192.168.18.42:81 -2014-04-16 23:57:19- http://192.168.18.42:81/ Connecting to 192.168.18.42:81... connected. HTTP request sent, awaiting response... その後は何も起こりません。ドキュメントが存在し、それは通常のFuntoo nginx.confです。 更新:ポート80をリッスンすることはできますが、どのポートでも機能しないので、まだガタガタです。 netstat -aWn | grep 81 | grep LISTEN tcp 60 0 …


2
シェルスクリプト:ファイルが存在しない場合に、ファイルに複数行のコンテンツを書き込むにはどうすればよいですか?
/opt/nginx/conf.d/default.confシェルスクリプトを使用してこの内容のファイルを作成し、ファイルが存在しない場合は作成する必要があります。 server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /usr/share/nginx/html; } シェルスクリプトを使用して複数行のコンテンツを作成するにはどうすればよいですか? ディレクトリを作成しました sudo mkdir -p /opt/nginx/conf.d しかし、ファイルの書き方がわかりません。

4
nginx:ディレクトリリストの長いファイル名
OpenBSD 5.4、64ビットでnginx / 1.4.1を使用: ディレクトリ一覧を使用しているときに、nginxが完全なファイル名を表示するように設定するにはどうすればよいでしょうか(または、少なくともデフォルトのファイル名からさらに多くを表示します)。 グーグルで私にこれを与えただけです: http://forum.nginx.org/read.php?2,124400,167420#msg-167420 January 18, 2011 08:36PM fagtron I looked all over the net and wasn't able to find this answer anyway, so I looked into the nginx source files and it's very easy. Simply modify the file located at [b]src/http/modules/ngx_http_autoindex_module.c[/b] and then compile. Change these …
8 openbsd  nginx 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.