質問編集履歴
2
Nginxの詳細追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -185,3 +185,261 @@
|
|
185
185
|
|
186
186
|
|
187
187
|
![イメージ説明](d87909747edd9bdf868e382e0e58e195.png)
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
追加 サーバーの設定も追記致します。
|
192
|
+
|
193
|
+
```ここに言語を入力
|
194
|
+
|
195
|
+
server {
|
196
|
+
|
197
|
+
listen 80 default_server;
|
198
|
+
|
199
|
+
server_name localhost;
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
location / {
|
204
|
+
|
205
|
+
proxy_request_buffering off;
|
206
|
+
|
207
|
+
proxy_pass http://※※※.※※※.※※※.※※※;
|
208
|
+
|
209
|
+
}
|
210
|
+
|
211
|
+
}
|
212
|
+
|
213
|
+
server {
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
server_name ※※※.cloud;
|
218
|
+
|
219
|
+
listen 443;
|
220
|
+
|
221
|
+
ssl on;
|
222
|
+
|
223
|
+
# 証明書チェーン
|
224
|
+
|
225
|
+
ssl_certificate /etc/letsencrypt/live/※※※.cloud/fullchain.pem;
|
226
|
+
|
227
|
+
# 秘密鍵
|
228
|
+
|
229
|
+
ssl_certificate_key /etc/letsencrypt/live/※※※.cloud/privkey.pem;
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
root /var/awww/html/※※※/laravel/public;
|
234
|
+
|
235
|
+
index index.php;
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
location / {
|
244
|
+
|
245
|
+
try_files $uri $uri/ /index.php?$query_string;
|
246
|
+
|
247
|
+
}
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
location ~ [^/].php(/|$) {
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
fastcgi_split_path_info ^(.+.php)(/.+)$;
|
262
|
+
|
263
|
+
if (!-f $document_root$fastcgi_script_name) {
|
264
|
+
|
265
|
+
return 404;
|
266
|
+
|
267
|
+
}
|
268
|
+
|
269
|
+
|
270
|
+
|
271
|
+
fastcgi_index index.php;
|
272
|
+
|
273
|
+
# 設定ファイルを読み込む
|
274
|
+
|
275
|
+
include fastcgi_params;
|
276
|
+
|
277
|
+
# FastCGI サーバに渡されるべきパラメータを設定
|
278
|
+
|
279
|
+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
280
|
+
|
281
|
+
fastcgi_param PATH_INFO $fastcgi_path_info;
|
282
|
+
|
283
|
+
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
284
|
+
|
285
|
+
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
}
|
290
|
+
|
291
|
+
|
292
|
+
|
293
|
+
location ~ /.ht {
|
294
|
+
|
295
|
+
deny all;
|
296
|
+
|
297
|
+
}
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
location ~ /.well-known {
|
302
|
+
|
303
|
+
allow all;
|
304
|
+
|
305
|
+
}
|
306
|
+
|
307
|
+
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
}
|
312
|
+
|
313
|
+
server {
|
314
|
+
|
315
|
+
#参考サイト https://heartbeats.jp/hbblog/2012/06/nginx06.html
|
316
|
+
|
317
|
+
server_name ※※※.work;
|
318
|
+
|
319
|
+
listen 443;
|
320
|
+
|
321
|
+
ssl on;
|
322
|
+
|
323
|
+
# 証明書チェーン
|
324
|
+
|
325
|
+
ssl_certificate /etc/letsencrypt/live/※※※.work/fullchain.pem;
|
326
|
+
|
327
|
+
# 秘密鍵
|
328
|
+
|
329
|
+
ssl_certificate_key /etc/letsencrypt/live/※※※.work/privkey.pem;
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
root /var/awww/html/labo;
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
index index.php;
|
338
|
+
|
339
|
+
location / {
|
340
|
+
|
341
|
+
try_files $uri $uri/ /index.php?$query_string;
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
# Cors unity
|
346
|
+
|
347
|
+
add_header Access-Control-Allow-Origin *;
|
348
|
+
|
349
|
+
add_header Access-Control-Allow-Methods "POST, GET, OPTIONS";
|
350
|
+
|
351
|
+
add_header Access-Control-Allow-Headers
|
352
|
+
|
353
|
+
"Accept, X-Access-Token, X-Application-Name, X-Request-Sent-Time";
|
354
|
+
|
355
|
+
add_header Access-Control-Allow-Credentials true;
|
356
|
+
|
357
|
+
|
358
|
+
|
359
|
+
# End Cors unity
|
360
|
+
|
361
|
+
}
|
362
|
+
|
363
|
+
location ~ [^/].php(/|$) {
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
# 一つ目 ( .+.php ) は $fastcgi_script_name の値になり、二つ目 ( /.+ ) は $fastcgi_path_info の値になる
|
368
|
+
|
369
|
+
fastcgi_split_path_info ^(.+.php)(/.+)$;
|
370
|
+
|
371
|
+
if (!-f $document_root$fastcgi_script_name) {
|
372
|
+
|
373
|
+
return 404;
|
374
|
+
|
375
|
+
}
|
376
|
+
|
377
|
+
|
378
|
+
|
379
|
+
fastcgi_index index.php;
|
380
|
+
|
381
|
+
# 設定ファイルを読み込む
|
382
|
+
|
383
|
+
include fastcgi_params;
|
384
|
+
|
385
|
+
# FastCGI サーバに渡されるべきパラメータを設定
|
386
|
+
|
387
|
+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
388
|
+
|
389
|
+
fastcgi_param PATH_INFO $fastcgi_path_info;
|
390
|
+
|
391
|
+
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
392
|
+
|
393
|
+
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
# Cors unity
|
398
|
+
|
399
|
+
add_header Access-Control-Allow-Origin *;
|
400
|
+
|
401
|
+
add_header Access-Control-Allow-Methods "POST, GET, OPTIONS";
|
402
|
+
|
403
|
+
add_header Access-Control-Allow-Headers
|
404
|
+
|
405
|
+
"Accept, X-Access-Token, X-Application-Name, X-Request-Sent-Time";
|
406
|
+
|
407
|
+
add_header Access-Control-Allow-Credentials true;
|
408
|
+
|
409
|
+
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
# End Cors unity
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
|
418
|
+
|
419
|
+
}
|
420
|
+
|
421
|
+
# location ~ .php$ {
|
422
|
+
|
423
|
+
|
424
|
+
|
425
|
+
location ~ /.ht {
|
426
|
+
|
427
|
+
deny all;
|
428
|
+
|
429
|
+
}
|
430
|
+
|
431
|
+
|
432
|
+
|
433
|
+
location ~ /.well-known {
|
434
|
+
|
435
|
+
allow all;
|
436
|
+
|
437
|
+
}
|
438
|
+
|
439
|
+
|
440
|
+
|
441
|
+
|
442
|
+
|
443
|
+
}
|
444
|
+
|
445
|
+
```
|
1
写真の変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,25 +28,25 @@
|
|
28
28
|
|
29
29
|
|
30
30
|
|
31
|
-
1枚目 エディター「Simulate Groups mode ( BuildScriptVirtualMode )」
|
31
|
+
~~1枚目 エディター「Simulate Groups mode ( BuildScriptVirtualMode )」
|
32
32
|
|
33
|
-
思い通り作動致しました。
|
33
|
+
思い通り作動致しました。~~
|
34
34
|
|
35
35
|
![イメージ説明](43ec1005598ff813871b29a6630b4c4d.png)
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
2枚目 エディター「Simulate Groups mode ( BuildScriptVirtualMode )」
|
39
|
+
~~2枚目 エディター「Simulate Groups mode ( BuildScriptVirtualMode )」
|
40
40
|
|
41
|
-
音声の再生は聞えませんでした。
|
41
|
+
音声の再生は聞えませんでした。~~
|
42
42
|
|
43
43
|
![イメージ説明](0859ac14b14b3d824c6f210c67802228.png)
|
44
44
|
|
45
45
|
|
46
46
|
|
47
|
-
3枚目 Webサイト 「WebGL ウェブサイト 再生されず」
|
47
|
+
~~3枚目 Webサイト 「WebGL ウェブサイト 再生されず」
|
48
48
|
|
49
|
-
スクリプトは動いているようですが音声の再生は聞えませんでした。
|
49
|
+
スクリプトは動いているようですが音声の再生は聞えませんでした。~~
|
50
50
|
|
51
51
|
|
52
52
|
|
@@ -125,3 +125,63 @@
|
|
125
125
|
Unity 2019.2.0f1
|
126
126
|
|
127
127
|
Addressables 1.15.1
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
編集
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
写真の変更
|
138
|
+
|
139
|
+
当方のミスで エラー表示の文字が大きすぎて全ての文字が表示されていない事がわかりましたので最初の写真はそのままですが文字が小さくなったスクショを掲載します。
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
1枚目 エディター「Simulate Groups mode ( BuildScriptVirtualMode )」
|
146
|
+
|
147
|
+
思い通り作動致しました。音声も聞こえます。
|
148
|
+
|
149
|
+
エラーはありません。
|
150
|
+
|
151
|
+
![イメージ説明](1deb0f4fb9e2345b89efc0b9ebcde326.png)
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
2枚目 エディター「Simulate Groups mode ( BuildScriptVirtualMode )」
|
156
|
+
|
157
|
+
Shereの表示がピンクになりました。
|
158
|
+
|
159
|
+
音声の再生は聞えませんでした。
|
160
|
+
|
161
|
+
FMOD::soundの様なエラーが出ておりますがWebサイトごとに対応する為の音声エラーと考えております。
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
![イメージ説明](20b4d693362a3d167a688fe0a30aa129.png)
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
3枚目 Webサイト 「WebGL ウェブサイト 再生されず」
|
174
|
+
|
175
|
+
スクリプトは動いているようですが音声の再生は聞えませんでした。
|
176
|
+
|
177
|
+
ピンク色のShereが一瞬色が対応するのですがすぐにピンクになってしまいます。
|
178
|
+
|
179
|
+
音声は聞えませんでした。
|
180
|
+
|
181
|
+
横のボタンを押すと読み込むようにしているのですが押すと一瞬シェーダーが入るようです。
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
![イメージ説明](d87909747edd9bdf868e382e0e58e195.png)
|