Nginxをプロキシサーバとして、npm startで動いているReactアプリにアクセスしたいと考えています。
Nginxに以下のような設定をしましたが、http://www.example.comのようにアクセスしても、index.htmlしか返ってこず、画面が真っ白になってしまいます。http://www.example.com:3000とポートを指定すると正しくレンダリングされたページが返ってきます。
どのような設定をすれば、80番ポートにアクセスしても正しくレンダリングされるのでしょうか。また、npm run buildはしないでnpm startで公開したいと考えています。
config
1#sites-enabled/default 2server { 3 listen 80 default_server; 4 listen [::]:80 default_server; 5 6 # SSL configuration 7 # 8 # listen 443 ssl default_server; 9 # listen [::]:443 ssl default_server; 10 # 11 # Note: You should disable gzip for SSL traffic. 12 # See: https://bugs.debian.org/773332 13 # 14 # Read up on ssl_ciphers to ensure a secure configuration. 15 # See: https://bugs.debian.org/765782 16 # 17 # Self signed certs generated by the ssl-cert package 18 # Don't use them in a production server! 19 # 20 # include snippets/snakeoil.conf; 21 22 root /var/www/html; 23 24 # Add index.php to the list if you are using PHP 25 index index.html index.htm index.nginx-debian.html; 26 27 server_name www.example.com; 28 29 location / { 30 # First attempt to serve request as file, then 31 # as directory, then fall back to displaying a 404. 32 try_files $uri $uri/ =404; 33 proxy_pass http://127.0.0.1:3000; 34 } 35 36 # pass PHP scripts to FastCGI server 37 # 38 #location ~ .php$ { 39 # include snippets/fastcgi-php.conf; 40 # 41 # # With php-fpm (or other unix sockets): 42 # fastcgi_pass unix:/run/php/php7.3-fpm.sock; 43 # # With php-cgi (or other tcp sockets): 44 # fastcgi_pass 127.0.0.1:9000; 45 #} 46 47 # deny access to .htaccess files, if Apache's document root 48 # concurs with nginx's one 49 # 50 #location ~ /.ht { 51 # deny all; 52 #} 53}
あなたの回答
tips
プレビュー